Grails 和 Solr
我正在做这个项目,其中我需要为 apache solr 创建一个更强大的 GUI https://lucene.apache.org/solr
。我用 Grails 来做这件事,基本上,我只需要创建一个 GUI 来操作 solr url 并得到我需要的结果。在我看来,我可以让我的项目 Grails 与 Solr 同时运行,这没什么新鲜的。但我想这样做,但只有 1 台服务器正在运行。有什么方法可以用 Grails 做到这一点吗?
I'm doing this project, in which i need to create a more powerfull GUI for apache solr https://lucene.apache.org/solr
. I'm doing it with Grails, and basically, I just need to create a GUI which will manipulate solr url's and get me the results I need. The way im seing this, I can have my project Grails running at same time as Solr, nothing new here. But I would like to do it, but only have 1 server running. Is there any way to do this with Grails?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可能有点晚了,但为了防止对其他人有帮助,我添加了 0.02 美元。
查看 SolrJ 了解从 grails/groovy/java 到单独的 solr 实例进行通信的 java API。这非常简单,一旦您开始使用 Solr 的 NamedLists 来获取响应信息,您应该不会遇到任何问题。
Mats Lindh 有一些关于 solrj 的更多信息:
http:// e-mats.org/2008/04/using-solrj-a-short-guide-to-getting-started-with-solrj/
This may be a bit late, but in case it helps someone else I'm adding my $.02.
Look at SolrJ for the java API to communicate from grails/groovy/java to a separate solr instance. It's quite easy, and once you get your head wrapped around using Solr's NamedLists for response info, you should have no trouble.
Mats Lindh has some further information on solrj:
http://e-mats.org/2008/04/using-solrj-a-short-guide-to-getting-started-with-solrj/
Solr 插件嵌入了 Solr 的实例 - http://www.grails.org/plugin/solr - 这可能不是最好的生产方式,但它可能是一个很好的起点。
The Solr plugin embeds an instance of Solr - http://www.grails.org/plugin/solr - This might not be the best way for production, but it might be a good place to start.