2024-09-26
|
ZH
ElasticSearch根据SQL查询,SQL查询时 注意 列名(属性名) 区分大小写
2024-09-25
|
ZH
import org.elasticsearch.client.Request; import org.elasticsearch.client.Response; import org.elasticsearch.client.RestClient; /* PUT index_user/_bu
2024-09-25
|
ZH
List<Object> ids = new ArrayList<>(); ids.add(1); ids.add(2); ServiceProxy.delete("crm_user", ids);
2024-09-25
|
ZH
DataRow row = new ElasticSearchRow(); row.put("_id" ,123);//指定主键值 ServiceProxy.delete(table_name, row);
2024-09-25
|
ZH
与insert规则一样,需要有主键值,底层都是调用一样的POST接口 DataRow row = new ElasticSearchRow(); row.put("pub_ymd", DateUtil.format("yyyy-MM-dd")); row.put("read_qty", 123456
2024-09-25
|
ZH
/** * 插入数据 * POST 如果不指定ID会生成随机ID * PUT 必须指定主键值 * 默认主键 _i