Elasticsearch is a search server based on Lucene. It provides a distributed, multitenant-capable, full-text search engine with a RESTful web interface and schema-free JSON documents. Elasticsearch is developed in Java and is released as open source under the terms of the Apache License. ...

learn more… | top users | synonyms

2
votes
0answers
14 views

Wrapping a node.js module

I need to use elasticseach in my node.js project, whose API looks like the following: ...
2
votes
0answers
25 views

elastic search index/mapping creation

Including the full module, but the method I'm interested in is createIndex, feels more complicated than I think it should be. Still new at both node and elasticsearch ...
1
vote
1answer
231 views

Saving comments and submissions from Reddit using Elasticsearch

I wrote a script to save comments and submissions from Reddit using Elasticsearch. Is there any way to improve the speed of inserting new items into Elasticsearch? ...
3
votes
1answer
183 views

Searching for something at a location

I'm using Searchkick in a situation where a user might write the location they are searching for, or the thing they are searching for, or both. I've been working on the below code for most of the ...
2
votes
0answers
2k views

Little script to change the mapping of an existing ElasticSearch index while reindexing it

I tried to implement the idea given in the elasticsearch doc about reindexation albeit I think they must code it inside ElasticSearch and expose it as an API. ...