I am thinking a search engine , that natively supports JSON Document Databases .
It needs and indexer and fulltext search like Sphinxsearch but with native support to JSON format , that retrieves from database servers (Mongodb , Rethinkdb) and indexes configured tables.
Current Solutions we have SphinxSearch and Solr(elestic search) .
Sphinx is only oriented for MySQL, written in C++ and Developers are very hard to communicate. But it is the fastest , least memory used and easily scalable. About 3x 4x faster than Solr(ES)
Elastic Search is easy to use but takes huge load of Ram and much slower vs Sphinxsearch, and complex to setup for scaling.
An Full Text Search engine will be perfect fit for nim's Due to High performance , Ease of Maintenance and Extensible .
And we can C2Nim all the core algorithms from Sphinxsearch.
Comments?