node.js - trying to use lucene search with nodejs and mongodb -


i trying learn lucene build robust search mechanism mean stack application

but have understood conceptual part apache solr these series of videos https://www.youtube.com/watch?v=zh_ayqkg0wc&index=3&list=pljbe6j2eg1pz7yfu05bcqdv5bdkko75nq

but not sure how start implement it

as of source have refereed use java , have few confusions like

*what lucene , solr ie both mean same *if want build search mechanism how should use them *do have npm module in performing search

can please refer source search mongodb nodejs , lucene stack how build module (mechanism) perform search on mongodb collections

what lucene , solr ie both mean same

lucene search library built in java. solr web application built on top of lucene. solr = lucene + added features.

lucene:

apache lucene high-performance, full-featured text search engine library written entirely in java. technology suitable application requires full-text search.

solr:

solr major features include powerful full-text search, hit highlighting, faceted search, dynamic clustering, database integration, , rich document (e.g., word, pdf) handling. solr highly scalable, providing distributed search , index replication, , powers search , navigation features of many of world's largest internet sites. site powered solr. solr uses lucene java search library @ core full-text indexing , search, , has rest-like http/xml , json apis.

mongo , lucene

https://github.com/rstiller/mongo-lucene

https://www.jayway.com/2010/11/14/full-text-search-with-mongodb-and-lucene-analyzers/

mongo , solr

solr data import handlers mongodb

how import , index mongodb data in solr 4

what motivation integrate mongodb solr

http://blog.mongodb.org/post/29127828146/introducing-mongo-connector

https://github.com/mongodb-labs/mongo-connector

hope helps!


Comments

Popular posts from this blog

sql - invalid in the select list because it is not contained in either an aggregate function -

Angularjs unit testing - ng-disabled not working when adding text to textarea -

How to start daemon on android by adb -