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!