如何创建 Solr 实例

发布于 2024-11-16 12:46:06 字数 111 浏览 4 评论 0原文

我是 Apache Solr 的新手,我想创建 Solr 实例。我已在笔记本电脑本地配置了 Apache Solr 3.2.0。如何创建 Solr 实例以及 Solr 实例的含义是什么。任何帮助将不胜感激..

I am new to Apache Solr, and I want to create Solr instances. I have configured the Apache Solr 3.2.0 locally in my laptop. How I can create Solr Instance and what is the meaning of Solr Instance. Any help will be appreciated..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

层林尽染 2024-11-23 12:46:06

Solr实例的含义是什么

solr 实例类似于运行时环境。这是一个正在运行的 solr 服务。您使用 Solr 与 lucene 一起工作。
Lucene 是用于创建/访问/...全文索引的 java 库,没有实例,没有运行系统。
要联系/使用此索引数据(导入/导出/搜索/...),您需要像 solr 这样的“中介”或“代理”。 Solr可以使用lucene来索引或访问索引数据。

示例:如果您有笔记本电脑或个人电脑。所以正在运行的(linux/win)系统是一个实例,而来自系统的数据存储在硬盘上。

Solr 相当于正在运行的系统,lucene 相当于将数据存储在系统驱动器上的磁盘驱动器。

要获取实例的定义,请检查以下内容:http://en.wikipedia。 org/wiki/Instance_%28computer_science%29

如何创建 Solr 实例

通过启动运行 Solr J2EE 组件的 tomcat 服务器来创建 Solr 实例。
因此,如果您的 Solr 仍处于配置状态,请启动 tomcat 来启动/创建 solr 实例。

一般来说,此链接很有帮助:http://wiki.apache.org/solr/SolrTomcat

what is the meaning of Solr Instance

An solr-instance is something like an runtime-environment. It's an running solr service. U use Solr to work with lucene.
Lucene are java libraries to create/access/... the fulltext index, no instance, no running system.
To contact/use this indexed data (import/export/search/...) , you need an "mediator" or "agent" like solr. Solr can index or access the indexed data by using lucene.

Example: if you have an laptop or pc. So the running (linux/win) system is an instance, while the data from the systems is stored on hard disk.

Solr is comparable with the running system, lucene is comparable with the disk-dirver to store data on your system-drive.

To get an definition of what an instance is, check this: http://en.wikipedia.org/wiki/Instance_%28computer_science%29

How I can create Solr Instance

by starting the tomcat server, which runs the Solr J2EE component.
So if your Solr is still configured, start the tomcat for starting/creating an solr-instance.

In general, this link is helpful: http://wiki.apache.org/solr/SolrTomcat

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文