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. ...
1
vote
1answer
132 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
122 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
1k 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.
...