Elasticsearch中storefield与non-storefield的区别在定义index的mapping的时候,我们可以指定某些fields是否要store(默认是不store)那么他们有什么区别呢?PUT/my_index{"mappings":{"my_type":{"properties":{"title":{"type":"string","store":true},"date":{"type":"date","store":true},"content":{"...
继续阅读 >