Farzher
Farzher

Reputation: 14583

Storing lots of emails (including body) in a database?

I need to store let's say 1000 emails everyday, these emails need to belong to a specific user but also be searchable to everyone.

Can MySQL do this? Will it slow down too much? Do I need to use noSQL? Or a combination or both? What's the proper way of doing this? I would prefer just MySQL if possible.

Upvotes: 1

Views: 410

Answers (1)

Laurent Parenteau
Laurent Parenteau

Reputation: 2576

Can MySQL do this

Yes, MySQL can do this.

Will it slow down too much?

That depends on how much is too much, and how you will be setting things up.

Do I need to use noSQL? Or a combination or both?

No need to use NoSQL or a combination of both.

What's the proper way of doing this? I would prefer just MySQL if possible.

The proper way depends on all your requirements and expertise. But it is quite possible to use MySQL to do that.

Upvotes: 2

Related Questions