Spring Boot+Elasticsearch的集成中,@Document注解有什么作用?
发布网友
发布时间:2022-03-25 00:42
我来回答
共4个回答
热心网友
时间:2022-03-25 02:12
public @interface Document {
String indexName(); //索引库名,个人建议以项目名称命名
String type() default ""; //类型,个人建议以实体类名称命名
short shards() default 5; //默认分区数
short replicas() default 1; //每个分区默认的备份数
String refreshInterval() default "1s"; //刷新间隔
String indexStoreType() default "fs"; //索引文件存储类型
}
热心网友
时间:2022-03-25 03:30
我之前下载过,在百度里可以找到,里面还有很多类型的都还可以
热心网友
时间:2022-03-25 05:04
Field(type = FieldType.Long, index = FieldIndex.not_analyzed, store = true)
type:es按照什么数据类型解析这个Field;
index:
FieldIndex.not_analyzed:不会分词,只能根据原词索引Field;
FieldIndex.analyzed:根据分词器分词,可以根据原词和分词后的词条索引Field;
热心网友
时间:2022-03-25 06:56
《盗魂铃》(又名“二本金钱豹”、“八戒降妖”)