Reputation: 3401
I'm working on project with following domain structure:
If there will be at least 1000 users, each can have 10 projects, as result there will be 1000*10*200,200 keywords to be stored.
Use-cases:
Possible approaches:
What is the preferable database and table structure for storing such data ? I think that the best solution is 5.
Upvotes: 0
Views: 113
Reputation: 589
Just give a try on solr or lucene search engine . Your problem seems to be more of searching . I have had same scenario and i have implemented it using solr in Java.
Upvotes: 1