https://github.com/joshdevins/elasticsearch-scorer-plugin
A "hello world" scorer plugin for ElasticSearch
https://github.com/joshdevins/elasticsearch-scorer-plugin
Last synced: about 1 year ago
JSON representation
A "hello world" scorer plugin for ElasticSearch
- Host: GitHub
- URL: https://github.com/joshdevins/elasticsearch-scorer-plugin
- Owner: joshdevins
- Created: 2012-10-15T08:31:39.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2013-07-05T09:41:22.000Z (about 13 years ago)
- Last Synced: 2025-03-31T12:39:15.224Z (over 1 year ago)
- Language: Java
- Size: 141 KB
- Stars: 9
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ElasticSearch Scorer Plugin
A "hello world" scorer plugin for ElasticSearch. This has a few simple scorers:
* `constant-score`: A scorer that returns just a constant score of `1`
(`double`).
* `random-score`: A scorer that returns a random score (`double`).
* `lucene-score`: A scorer that returns just the Lucene score directly
(`float`).
* `lucene-downscaled-score`: A scorer that returns just the Lucene score
directly but scaled down to a small double to see what effect this has
(if any) (`double`).