[nodebb-plugin-search-elasticsearch] Elasticsearch Search
-
I've implemented Elasticsearch search plugin based on the nodebb-plugin-solr plugin. I saw that there was an older Elasticsearch plugin that was outdated, so instead I took the nodebb-plugin-solr code and adapted it, replacing the Solr code with Elasticsearch api calls.
-
@joe1chen NICE, but whats the difference between the two and how do they compare as far as performance goes? What would make me switch from Solr (i hate java) to Elastic Search?
-
As far as features are concerned, both are very comparable. Both are built to scale across multiple machines, although Elasticsearch is designed with its own clustering built-in while Solr is designed to work with Apache Zookeeper.
We already had a cluster of Elasticsearch servers and wanted to leverage that instead of having to deploy yet another cluster of Solr servers.
-
@joe1chen You beat me to it! I was going to adapt Solr for elasticsearch, but then I saw it was also based on java, and then I went
If there are benchmarks vs. Solr, that would be very much appreciated.
I presume you modeled elasticsearch w/ the latest fixes to Solr I made today, yes?