Solr learning Summary (iii) Solr web management background, solrweb

Source: Internet
Author: User
Tags solr query

Solr learning Summary (iii) Solr web management background, solrweb

As mentioned above, the installation of Solr is justified. This time we should talk about. net and database content, and how C # operates Solr indexes. However, I 'd like to talk about some basic content first, such as the solr query parameter usage instructions and the use of the web management system that comes with solr. Only by clearly understanding the basic content of solr, and learning about solr C # And database operations in the future will it be difficult. At the beginning, After configuring solr, I directly went to the solr client to write the test code. However, I do not know which parameters are required for an Update request and what each parameter means, so that I encountered various basic solr problems, I don't know where the problem is? Lessons learned.

 

Solr web Management Background

Visit the home page: http: // localhost: 8080/solr /#/

1.DashboardA dashboard that displays basic Solr information, including the solr version, system memory usage, jvm memory usage, and jvm parameters.

      

2. LoggingThe running log of solr to check whether there is a warning or exception in solr operation, so that it can be processed in a timely manner.

 

3. Core AdminThe index library management interface is very important, which makes multi-core configuration and index library optimization very simple;
Main functions include AddCore (add core, I .e. index Library), Unload (Unload core), Rename (Rename core), and Optimize (Optimize index library ).

4. Core SelectorCore selector: select the index library to operate

      

1. Overview (Overview): view the index information. For example, check whether the number of Num docs has increased. Including basic statistics such as the number of current documents; and instance information such as the current core configuration directory;

 

2. Analysis: Checks word segmentation to diagnose potential query/index problems in text Analysis. Note that FieldType must be selected to be of the same type as the analyzed content.

 

3. Query. Relevant Query parameters will be introduced later.

       

4. Schema (definition of the current index database): displays the configuration file of the current schema, that is, the content of schema. xml. For example, you can see the configuration fields in schema. xml.

5. operations related to the indexes of Documents, such as adding, modifying, and deleting indexes. For example, we want to add an index.

A. in the schema of solr D: \ solr_home \ mycore1 \ conf. add related field fields in the xml configuration file, for example: <field name = "title" type = "string" indexed = "true" stored = "true" required = "true" multiValued = "false"/>

B. Select/update on the following page, select json as the document format, and submit the document by submit. In this way, the index is increased. The modification and addition are both/update and delete as/delete.

       

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.