ES query
·
ElasticSearch
ES 쿼리 성능 분석 { "_source": ["type", "content_id", "title"], "size": 10, "from": 0, "query": { "bool": { "must": [ { "query_string": { "query": "*st*", "fields": ["title", "content"] } } ], "filter": [ { "terms": { "type": ["some_conntent"] } }, { "term": { "user_id": userId } } ] } }, "highlight": { "fields": { "content": { "number_of_fragments": 1, "fragment_size": 100, "pre_tags": [""], "post_ta..