分布式搜索Elasticsearch——检索一条记录

        分布式搜索Elasticsearch——创建索引一文中提到如何创建索引,本文讲述如何检索一条记录,也就是ES中的Get。

        在创建索引时,我们根据IndexResponse,得到了index、type和id,Get一条记录的方法很简单:

GetResponse getResponse = client.prepareGet(index, type, id).execute().actionGet(); 

        分布式搜索Elasticsearch——创建索引一文中提到如何 将一个实体转化为Json字符串,我们推荐的方法是使用Jackson,那么,在Get得到Response后,也使用Jackson将Json字符串转化为你的实体:

Person newPerson = mapper.readValue(getResponse.getSourceAsString(), Person.class);

你可能感兴趣的:(分布式搜索Elasticsearch——检索一条记录)