the browser-facing portion of osu!
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 63 lines 1.3 kB view raw
1{ 2 "mappings": { 3 "dynamic": false, 4 "properties": { 5 "forum_id": { 6 "type": "long" 7 }, 8 "is_deleted": { 9 "type": "boolean" 10 }, 11 "post_id": { 12 "type": "long" 13 }, 14 "post_text": { 15 "type": "text", 16 "analyzer": "post_text_analyzer" 17 }, 18 "post_time": { 19 "type": "date", 20 "format": "strict_date_optional_time||epoch_millis||yyyy-MM-dd HH:mm:ss" 21 }, 22 "poster_id": { 23 "type": "long" 24 }, 25 "search_content": { 26 "type": "text", 27 "analyzer": "post_text_analyzer" 28 }, 29 "topic_id": { 30 "type": "long" 31 }, 32 "topic_title": { 33 "type": "text", 34 "analyzer": "post_text_analyzer" 35 } 36 } 37 }, 38 "settings": { 39 "index": { 40 "analysis": { 41 "analyzer": { 42 "post_text_analyzer": { 43 "filter": [ 44 "lowercase", 45 "unique" 46 ], 47 "char_filter": [ 48 "html_filter" 49 ], 50 "tokenizer": "standard" 51 } 52 }, 53 "char_filter": { 54 "html_filter": { 55 "type": "html_strip" 56 } 57 } 58 }, 59 "number_of_shards": "1", 60 "number_of_replicas": "0" 61 } 62 } 63}