gpt4 book ai didi

node.js - 如何使用 elastic.js 客户端索引文档?

转载 作者:搜寻专家 更新时间:2023-10-31 23:43:30 29 4
gpt4 key购买 nike

到目前为止,我还没有找到有关如何使用 elastic.js 客户端 api ( https://github.com/fullscale/elastic.js) 为文档编制索引的任何示例。这里那里有一些线索,但还没有具体的线索。

  • http://docs.fullscale.co/elasticjs/ejs.Document.html
  • Document ( index, type, id ): 用于创建、替换、更新和删除文档的对象
  • Document > doIndex(fnCallBack):将文档存储在给定的索引和类型中。如果没有设置 id,则在索引期间创建一个。
  • Document > source (doc): 设置源文档。

任何人都可以提供示例代码片段来说明如何实例化文档对象并将其用于索引数据吗?

谢谢!

更新#1(2013 年 4 月 21 日星期日中午 12:58 CDT)

https://gist.github.com/pulkitsinghal/5430444

最佳答案

您的要点是正确的。

您创建 ejs.Document 对象,指定索引、类型和您想要索引的文档的可选 ID。如果您不指定 id,elasticsearch 将为您生成一个。

您将源设置为要索引的 json 对象,然后调用 doIndex 方法并在需要时指定回调。 Node 示例不索引文档,但 angular 和 jquery 示例显示了一个基本示例,可以轻松地与 Node 客户端一起使用。

https://github.com/fullscale/elastic.js/blob/master/examples/angular/js/controllers.js#L30

也可以看看测试:

https://github.com/fullscale/elastic.js/blob/master/tests/index_test.js#L265

关于node.js - 如何使用 elastic.js 客户端索引文档?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16134244/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com