ElasticSearch的Node.js客户端:实战技巧
const elasticsearch = require('elasticsearch');
// 创建Elasticsearch客户端实例
const client = new elasticsearch.Client({
host: 'localhost:9200',
log: 'trace'
});
// 使用客户端执行基本的搜索操作
client.search({
index: 'myindex',
type: 'mytype',
body: {
query: {
match: {
title: 'Elasticsearch'
}
}
}
}).then(response => {
console.log('搜索结果:', response.hits.hits);
}, error => {
console.error('搜索出错:', error);
});
// 创建一个新的文档
client.create({
index: 'myindex',
type: 'mytype',
id: '1',
body: {
title: 'Elasticsearch: The Definitive Guide',
published_date: '2015-02-06',
author: 'Zachary Tong'
}
}).then(response => {
console.log('文档创建成功:', response);
}, error => {
console.error('创建文档出错:', error);
});
这段代码展示了如何使用Elasticsearch的Node.js客户端来执行基本的搜索操作和创建文档。它首先配置了Elasticsearch客户端,然后执行了一个搜索查询,并在控制台输出了结果。接着,它演示了如何创建一个新的文档,并在文档成功创建后输出响应。这些操作都使用了Promises进行异步处理,这是当前在Node.js中实现异步编程的推荐方式。
评论已关闭