gpt4 book ai didi

ruby - 将Rails应用程序连接到Elasticsearch服务器

转载 作者:行者123 更新时间:2023-12-03 00:20:18 24 4
gpt4 key购买 nike

我正在使用logstash + elasticsearch索引服务器日志。 Elasticsearch服务器在localhost:9200上运行,具有数百万个服务器日志文档。
我也有一个运行在localhost:3000的Rails应用程序。我需要将此Rails应用程序连接到ES服务器。

我已经读过关于“elasticsearch-rails” gem的文章,但是我到处都使用ActiveRecords / Models找到了它们。但是,我不认为为此需要ActiveRecords。我只需要一种查询ES服务器索引并在Rails应用程序中获取文档的方法。

有没有办法做到这一点?任何人都可以在这种情况下帮助我吗?如果我不清楚我的问题,请发表评论。

提前致谢。

最佳答案

那里有许多解决方案,但其中一个脱颖而出的就是(例如)Stretcher,它提供了一个非常简单的API,该API与Elasticsearch API紧密匹配。

例如:

server = Stretcher::Server.new('http://localhost:9200')
res = server.index(:myindex).search(size: 10, query: {match_all: {}})

# res is of type Stretcher::SearchResults
res.total # => 10
res.documents # => [#<Hashie::Mash _id="4" text="Hello 4">, ...]
...

关于ruby - 将Rails应用程序连接到Elasticsearch服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31538817/

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