filter-collections
filter-collections copied to clipboard
search resouces
Some links to work related to the search implementation:
search experience
- http://www.stephentcannon.com/2013/11/meteor-alternative-to-mongodb-full-text.html ("life text input" server search over multiple fields, implemented after client find() got slugish around 10000 records)
- https://github.com/Crenshinibon/spomet
- https://github.com/mizzao/meteor-autocomplete (free text)
- https://atmosphere.meteor.com/package/autocompletion
full text seach
- http://stackoverflow.com/questions/14567856/full-text-search-with-meteor-js-and-mongodb
- http://stackoverflow.com/questions/17159626/implementing-mongodb-2-4s-full-text-search-in-a-meteor-app
- http://www.meteorpedia.com/read/Fulltext_search
- https://github.com/matteodem/meteor-easy-search (but this requires installing "elastic search" engine)
multi-lang search
- Note that language specific search needs documents with
language:fields. https://github.com/aldeed/meteor-collection2/issues/45#issuecomment-32463592
Great Idea!! I'm interested in full text search integration and this documentation becomes very handy. Right now I'm in the middle of the project deployment but I think that will be looking this feature in about two weeks. Thanks!!