1
votes

I'm building a web application that involves very frequent database updates (10s-100s per second maybe), and also requires the same rate of search operations. (i.e. Users post information and then that information then needs to be full-text searched very regularly, and very soon after its submission)

The current plan is to use MySQL as the database, but build an index over the searchable data in Solr to return "item id" which would then be retrieved from the MySQL db.

Is anyone able to provide me with any insight/info on the ability of Solr to support my needs?

Thanks!

1

1 Answers

3
votes

It's not going to be easy, as Solr was originally designed to be performant with low updates frequencies. However, major improvements have been made with Solr+RankingAlgorithm and soft commits (now available in Solr 4.0 nightly builds). If those will meet the performance requirements of your project is for you to find out (there are also lots of other factors involved, from available hardware to search requirements involving other Solr components).