d6c50f5640
* TorrentJSON.ID is uint now, fix weird page sorting The bug was that ES would sort by ID in a weird manner because the id was a string. The id is now a uint. * Resolved the conflict for future merging
53 lignes
1 Kio
YAML
53 lignes
1 Kio
YAML
---
|
|
settings:
|
|
analysis:
|
|
analyzer:
|
|
nyaapantsu_analyzer:
|
|
tokenizer: nyaapantsu_tokenizer
|
|
filter:
|
|
- standard
|
|
- lowercase
|
|
tokenizer:
|
|
nyaapantsu_tokenizer:
|
|
type: edge_ngram
|
|
min_gram: 2
|
|
max_gram: 15
|
|
token_chars:
|
|
- letter
|
|
- digit
|
|
index:
|
|
number_of_shards: 1
|
|
number_of_replicas: 0
|
|
|
|
mappings:
|
|
torrents:
|
|
properties:
|
|
# TODO Consistent ID's type in TorrentJSON
|
|
id:
|
|
type: long
|
|
name:
|
|
type: text
|
|
analyzer: nyaapantsu_analyzer
|
|
fielddata: true # Use to sort by id because it is currently a text field
|
|
category:
|
|
type: text
|
|
sub_category:
|
|
type: text
|
|
status:
|
|
type: long
|
|
hash:
|
|
type: text
|
|
date:
|
|
type: date
|
|
uploader_id:
|
|
type: long
|
|
downloads:
|
|
type: long
|
|
seeders:
|
|
type: long
|
|
leechers:
|
|
type: long
|
|
completed:
|
|
type: long
|
|
filesize:
|
|
type: long
|