Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text, folder names, filenames, file extensions, pathnames, dummy URLs, and user input are shown as follows:
The field definition entry in the solrconfig.xml
file tells Solr to look for all the JAR files from the ../../lib
directory.
A block of code is set as follows:
<field name="id" type="string" indexed="true" stored="true" required="true" /> <field name="title" type="text" indexed="true" stored="true" /> <field name="author" type="string" indexed="true" stored="true"/>
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
<entry>
<name>documentCache</name>
<class>org.apache.solr.search.LRUCache</class>
<version>1.0</version>
<description>LRU Cache(maxSize=512, initialSize=512)</description>
<stats>
<stat name="lookups">3251</stat>
<stat name="hits">3101</stat>
<stat name="hitratio">0.95</stat>
<stat name="inserts">160</stat>
<stat name="evictions">0</stat>
<stat name="size">160</stat>
<stat name="warmupTime">0</stat>
<stat name="cumulative_lookups">3251</stat>
<stat name="cumulative_hits">3101</stat>
<stat name="cumulative_hitratio">0.95</stat>
<stat name="cumulative_inserts">150</stat>
<stat name="cumulative_evictions">0</stat>
</stats>
</entry>
<entry>
Any command-line input or output is written as follows:
curl http://localhost:8080/solr/mbartists/admin/stats.jsp
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "clicking on the Next button moves you to the next screen".