此版本仍在开发中,尚未被视为稳定版本。对于最新的稳定版本,请使用 Spring Data Elasticsearch 5.4.0! |
反应式 Elasticsearch 操作
ReactiveElasticsearchOperations
是使用 .ReactiveElasticsearchClient
是 的默认实现。ReactiveElasticsearchTemplate
ReactiveElasticsearchOperations
首先,需要了解要合作的实际客户端。
请参阅 Reactive Rest Client 以了解有关 Client 及其配置方法的详细信息。ReactiveElasticsearchOperations
反应式操作用法
ReactiveElasticsearchOperations
允许您保存、查找和删除域对象,并将这些对象映射到存储在 Elasticsearch 中的文档。
请考虑以下事项:
示例 1.使用 ReactiveElasticsearchOperations
@Document(indexName = "marvel")
public class Person {
private @Id String id;
private String name;
private int age;
// Getter/Setter omitted...
}
ReactiveElasticsearchOperations operations;
// ...
operations.save(new Person("Bruce Banner", 42)) (1)
.doOnNext(System.out::println)
.flatMap(person -> operations.get(person.id, Person.class)) (2)
.doOnNext(System.out::println)
.flatMap(person -> operations.delete(person)) (3)
.doOnNext(System.out::println)
.flatMap(id -> operations.count(Person.class)) (4)
.doOnNext(System.out::println)
.subscribe(); (5)
上面在控制台上输出以下序列。
> Person(id=QjWCWWcBXiLAnp77ksfR, name=Bruce Banner, age=42)
> Person(id=QjWCWWcBXiLAnp77ksfR, name=Bruce Banner, age=42)
> QjWCWWcBXiLAnp77ksfR
> 0
1 | 将新文档插入 marvel 索引 。在服务器端生成并设置到返回的实例中。Person id |
2 | 在 marvel 索引中查找 with matching。Person id |
3 | 删除 marvel 索引中从给定实例中提取的 with matching 。Person id |
4 | 计算 marvel 索引中的文档总数。 |
5 | 不要忘记 subscribe() 。 |