i need to know which will be the best db for an autosugest db with some 80 million records...

    1)Redis
    2)tokyoCabinet
    3)Kyoto Cabinet
link|improve this question

0% accept rate
You should probably compare Kyoto Cabinet instead of Tokyo Cabinet. – Jordan Feb 1 '11 at 4:15
i have added that in the list – mumt Feb 1 '11 at 4:16
Is your auto-suggest a "starts with" style of search? This detail is huge. This will determine whether you can take advantage of sorted data or not. – Lord Tydus Feb 2 '11 at 2:23
feedback

1 Answer

This site may have what you're looking for: http://perfectmarket.com/blog/not_only_nosql_review_solution_evaluation_guide_chart

You have several things to consider:

  1. Volume of data - the database should be able to handle lots of records and large files
  2. List item
  3. Speed of inserts and retrieval
  4. Stability - you don't want to go down because you're hammering the DB with lots of hits, as is common with an autosuggest

I know it isn't on your list, but I would go with MongoDB. If you can't then I would go with Redis, simply for the speed factor.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.