Guest User

Master - SolrConfig

a guest
Mar 29th, 2011
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 45.78 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!--
  3. Licensed to the Apache Software Foundation (ASF) under one or more
  4. contributor license agreements.  See the NOTICE file distributed with
  5. this work for additional information regarding copyright ownership.
  6. The ASF licenses this file to You under the Apache License, Version 2.0
  7. (the "License"); you may not use this file except in compliance with
  8. the License.  You may obtain a copy of the License at
  9.  
  10.     http://www.apache.org/licenses/LICENSE-2.0
  11.  
  12. Unless required by applicable law or agreed to in writing, software
  13. distributed under the License is distributed on an "AS IS" BASIS,
  14. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. See the License for the specific language governing permissions and
  16. limitations under the License.
  17. -->
  18. <!--
  19.     For more details about configurations options that may appear in this
  20.     file, see http://wiki.apache.org/solr/SolrConfigXml.
  21.  
  22.     Specifically, the Solr Config can support XInclude, which may make it easier to manage
  23.     the configuration.  See https://issues.apache.org/jira/browse/SOLR-1167
  24. -->
  25. <config>
  26.   <!-- Set this to 'false' if you want solr to continue working after it has
  27.       encountered an severe configuration error.  In a production environment,
  28.       you may want solr to keep working even if one handler is mis-configured.
  29.  
  30.       You may also set this to false using by setting the system property:
  31.         -Dsolr.abortOnConfigurationError=false
  32.     -->
  33.   <abortOnConfigurationError>${solr.abortOnConfigurationError:true}</abortOnConfigurationError>
  34.   <!-- lib directives can be used to instruct Solr to load an Jars identified
  35.       and use them to resolve any "plugins" specified in your solrconfig.xml or
  36.       schema.xml (ie: Analyzers, Request Handlers, etc...).
  37.  
  38.       All directories and paths are resolved relative the instanceDir.
  39.  
  40.       If a "./lib" directory exists in your instanceDir, all files found in it
  41.       are included as if you had used the following syntax...
  42.      
  43.              <lib dir="./lib" />
  44.    -->
  45.   <!-- A dir option by itself adds any files found in the directory to the
  46.       classpath, this is useful for including all jars in a directory.
  47.    -->
  48.   <lib dir="../../contrib/extraction/lib" />
  49.   <!-- When a regex is specified in addition to a directory, only the files in that
  50.       directory which completely match the regex (anchored on both ends)
  51.       will be included.
  52.    -->
  53.   <lib dir="../../dist/" regex="apache-solr-cell-\d.*\.jar" />
  54.   <lib dir="../../dist/" regex="apache-solr-clustering-\d.*\.jar" />
  55.   <!-- If a dir option (with or without a regex) is used and nothing is found
  56.       that matches, it will be ignored
  57.    -->
  58.   <lib dir="../../contrib/clustering/lib/downloads/" />
  59.   <lib dir="../../contrib/clustering/lib/" />
  60.   <lib dir="/total/crap/dir/ignored" />
  61.   <!-- an exact path can be used to specify a specific file.  This will cause
  62.       a serious error to be logged if it can't be loaded.
  63.  <lib path="../a-jar-that-does-not-exist.jar" />
  64.  -->
  65.   <!-- Used to specify an alternate directory to hold all index data
  66.       other than the default ./data under the Solr home.
  67.       If replication is in use, this should match the replication configuration. -->
  68.   <dataDir>${solr.data.dir:D:\Solr\data\solr\}</dataDir>
  69.   <!-- WARNING: this <indexDefaults> section only provides defaults for index writers
  70.       in general. See also the <mainIndex> section after that when changing parameters
  71.       for Solr's main Lucene index. -->
  72.   <indexDefaults>
  73.    <!-- Values here affect all index writers and act as a default unless overridden. -->
  74.     <useCompoundFile>false</useCompoundFile>
  75.  
  76.     <mergeFactor>10</mergeFactor>
  77.     <!-- If both ramBufferSizeMB and maxBufferedDocs is set, then Lucene will flush
  78.     based on whichever limit is hit first.  -->
  79.     <!--<maxBufferedDocs>1000</maxBufferedDocs>-->
  80.  
  81.     <!-- Sets the amount of RAM that may be used by Lucene indexing
  82.      for buffering added documents and deletions before they are
  83.      flushed to the Directory.  -->
  84.     <ramBufferSizeMB>32</ramBufferSizeMB>
  85.     <!-- <maxMergeDocs>2147483647</maxMergeDocs> -->
  86.     <maxFieldLength>10000</maxFieldLength>
  87.     <writeLockTimeout>1000</writeLockTimeout>
  88.     <commitLockTimeout>10000</commitLockTimeout>
  89.  
  90.     <!--
  91.     Expert: Turn on Lucene's auto commit capability.  This causes intermediate
  92.     segment flushes to write a new lucene index descriptor, enabling it to be
  93.     opened by an external IndexReader.  This can greatly slow down indexing
  94.     speed.  NOTE: Despite the name, this value does not have any relation to
  95.     Solr's autoCommit functionality
  96.     -->
  97.     <!--<luceneAutoCommit>false</luceneAutoCommit>-->
  98.  
  99.     <!--
  100.     Expert: The Merge Policy in Lucene controls how merging is handled by
  101.     Lucene.  The default in 2.3 is the LogByteSizeMergePolicy, previous
  102.     versions used LogDocMergePolicy.
  103.  
  104.     LogByteSizeMergePolicy chooses segments to merge based on their size.  The
  105.     Lucene 2.2 default, LogDocMergePolicy chose when to merge based on number
  106.     of documents
  107.  
  108.     Other implementations of MergePolicy must have a no-argument constructor
  109.     -->
  110.     <!--<mergePolicy class="org.apache.lucene.index.LogByteSizeMergePolicy"/>-->
  111.  
  112.     <!--
  113.     Expert:
  114.     The Merge Scheduler in Lucene controls how merges are performed.  The
  115.     ConcurrentMergeScheduler (Lucene 2.3 default) can perform merges in the
  116.     background using separate threads.  The SerialMergeScheduler (Lucene 2.2
  117.     default) does not.
  118.     -->
  119.     <!--<mergeScheduler class="org.apache.lucene.index.ConcurrentMergeScheduler"/>-->
  120.  
  121.      
  122.     <!--
  123.      This option specifies which Lucene LockFactory implementation to use.
  124.      
  125.      single = SingleInstanceLockFactory - suggested for a read-only index
  126.               or when there is no possibility of another process trying
  127.               to modify the index.
  128.      native = NativeFSLockFactory  - uses OS native file locking
  129.      simple = SimpleFSLockFactory  - uses a plain file for locking
  130.  
  131.      (For backwards compatibility with Solr 1.2, 'simple' is the default
  132.       if not specified.)
  133.    -->
  134.     <lockType>native</lockType>
  135.     <!--
  136.     Expert:
  137.    Controls how often Lucene loads terms into memory -->
  138.     <!--<termIndexInterval>256</termIndexInterval>-->
  139.   </indexDefaults>
  140.   <mainIndex>
  141.     <!-- options specific to the main on-disk lucene index -->
  142.     <useCompoundFile>false</useCompoundFile>
  143.     <ramBufferSizeMB>32</ramBufferSizeMB>
  144.     <mergeFactor>10</mergeFactor>
  145.     <!-- Deprecated -->
  146.     <!--<maxBufferedDocs>1000</maxBufferedDocs>-->
  147.     <!--<maxMergeDocs>2147483647</maxMergeDocs>-->
  148.  
  149.     <!-- inherit from indexDefaults <maxFieldLength>10000</maxFieldLength> -->
  150.  
  151.     <!-- If true, unlock any held write or commit locks on startup.
  152.         This defeats the locking mechanism that allows multiple
  153.         processes to safely access a lucene index, and should be
  154.         used with care.
  155.         This is not needed if lock type is 'none' or 'single'
  156.     -->
  157.     <unlockOnStartup>false</unlockOnStartup>
  158.    
  159.     <!-- If true, IndexReaders will be reopened (often more efficient) instead
  160.         of closed and then opened.  -->
  161.     <reopenReaders>true</reopenReaders>
  162.  
  163.     <!--
  164.     Expert:
  165.    Controls how often Lucene loads terms into memory.  Default is 128 and is likely good for most everyone. -->
  166.     <!--<termIndexInterval>256</termIndexInterval>-->
  167.  
  168.     <!--
  169.        Custom deletion policies can specified here. The class must
  170.        implement org.apache.lucene.index.IndexDeletionPolicy.
  171.  
  172.        http://lucene.apache.org/java/2_3_2/api/org/apache/lucene/index/IndexDeletionPolicy.html
  173.  
  174.        The standard Solr IndexDeletionPolicy implementation supports deleting
  175.        index commit points on number of commits, age of commit point and
  176.        optimized status.
  177.  
  178.        The latest commit point should always be preserved regardless
  179.        of the criteria.
  180.    -->
  181.     <deletionPolicy class="solr.SolrDeletionPolicy">
  182.       <!-- The number of commit points to be kept -->
  183.       <str name="maxCommitsToKeep">1</str>
  184.       <!-- The number of optimized commit points to be kept -->
  185.       <str name="maxOptimizedCommitsToKeep">0</str>
  186.       <!--
  187.          Delete all commit points once they have reached the given age.
  188.          Supports DateMathParser syntax e.g.
  189.          
  190.          <str name="maxCommitAge">30MINUTES</str>
  191.          <str name="maxCommitAge">1DAY</str>
  192.      -->
  193.     </deletionPolicy>
  194.  
  195.     <!--  To aid in advanced debugging, you may turn on IndexWriter debug logging.
  196.      Setting to true will set the file that the underlying Lucene IndexWriter
  197.      will write its debug infostream to.  -->
  198.      <infoStream file="INFOSTREAM.txt">false</infoStream>
  199.  
  200.   </mainIndex>
  201.   <!--  Enables JMX if and only if an existing MBeanServer is found, use this
  202.    if you want to configure JMX through JVM parameters. Remove this to disable
  203.    exposing Solr configuration and statistics to JMX.
  204.  
  205.         If you want to connect to a particular server, specify the agentId
  206.         e.g. <jmx agentId="myAgent" />
  207.  
  208.         If you want to start a new MBeanServer, specify the serviceUrl
  209.         e.g <jmx serviceUrl="service:jmx:rmi:///jndi/rmi://localhost:9999/solr"/>
  210.  
  211.         For more details see http://wiki.apache.org/solr/SolrJmx
  212.  -->
  213.   <jmx />
  214.   <!-- the default high-performance update handler -->
  215.   <updateHandler class="solr.DirectUpdateHandler2">
  216.     <!-- A prefix of "solr." for class names is an alias that
  217.         causes solr to search appropriate packages, including
  218.         org.apache.solr.(search|update|request|core|analysis)
  219.     -->
  220.  
  221.     <!-- Perform a <commit/> automatically under certain conditions:
  222.         maxDocs - number of updates since last commit is greater than this
  223.         maxTime - oldest uncommited update (in ms) is this long ago
  224.         Instead of enabling autoCommit, consider using "commitWithin"
  225.         when adding documents. http://wiki.apache.org/solr/UpdateXmlMessages
  226.    <autoCommit>
  227.      <maxDocs>10000</maxDocs>
  228.      <maxTime>1000</maxTime>
  229.    </autoCommit>
  230.    -->
  231.  
  232.  
  233.     <!-- The RunExecutableListener executes an external command from a
  234.      hook such as postCommit or postOptimize.
  235.         exe - the name of the executable to run
  236.         dir - dir to use as the current working directory. default="."
  237.         wait - the calling thread waits until the executable returns. default="true"
  238.         args - the arguments to pass to the program.  default=nothing
  239.         env - environment variables to set.  default=nothing
  240.      -->
  241.     <!-- A postCommit event is fired after every commit or optimize command
  242.    <listener event="postCommit" class="solr.RunExecutableListener">
  243.      <str name="exe">solr/bin/snapshooter</str>
  244.      <str name="dir">.</str>
  245.      <bool name="wait">true</bool>
  246.      <arr name="args"> <str>arg1</str> <str>arg2</str> </arr>
  247.      <arr name="env"> <str>MYVAR=val1</str> </arr>
  248.    </listener>
  249.    -->
  250.     <!-- A postOptimize event is fired only after every optimize command
  251.    <listener event="postOptimize" class="solr.RunExecutableListener">
  252.      <str name="exe">snapshooter</str>
  253.      <str name="dir">solr/bin</str>
  254.      <bool name="wait">true</bool>
  255.    </listener>
  256.    -->
  257.  
  258.   </updateHandler>
  259.   <!-- Use the following format to specify a custom IndexReaderFactory - allows for alternate
  260.       IndexReader implementations.
  261.  
  262.       ** Experimental Feature **
  263.       Please note - Using a custom IndexReaderFactory may prevent certain other features
  264.       from working. The API to IndexReaderFactory may change without warning or may even
  265.       be removed from future releases if the problems cannot be resolved.
  266.  
  267.       ** Features that may not work with custom IndexReaderFactory **
  268.       The ReplicationHandler assumes a disk-resident index. Using a custom
  269.       IndexReader implementation may cause incompatibility with ReplicationHandler and
  270.       may cause replication to not work correctly. See SOLR-1366 for details.
  271.  
  272.  <indexReaderFactory name="IndexReaderFactory" class="package.class">
  273.    Parameters as required by the implementation
  274.  </indexReaderFactory >
  275.  -->
  276.   <!-- To set the termInfosIndexDivisor, do this: -->
  277.   <!--<indexReaderFactory name="IndexReaderFactory" class="org.apache.solr.core.StandardIndexReaderFactory">
  278.    <int name="termInfosIndexDivisor">12</int>
  279.  </indexReaderFactory >-->
  280.   <query>
  281.     <!-- Maximum number of clauses in a boolean query... in the past, this affected
  282.        range or prefix queries that expanded to big boolean queries - built in Solr
  283.        query parsers no longer create queries with this limitation.
  284.        An exception is thrown if exceeded.  -->
  285.     <maxBooleanClauses>1024</maxBooleanClauses>
  286.  
  287.  
  288.     <!-- There are two implementations of cache available for Solr,
  289.         LRUCache, based on a synchronized LinkedHashMap, and
  290.         FastLRUCache, based on a ConcurrentHashMap.  FastLRUCache has faster gets
  291.         and slower puts in single threaded operation and thus is generally faster
  292.         than LRUCache when the hit ratio of the cache is high (> 75%), and may be
  293.         faster under other scenarios on multi-cpu systems. -->
  294.     <!-- Cache used by SolrIndexSearcher for filters (DocSets),
  295.         unordered sets of *all* documents that match a query.
  296.         When a new searcher is opened, its caches may be prepopulated
  297.         or "autowarmed" using data from caches in the old searcher.
  298.         autowarmCount is the number of items to prepopulate.  For LRUCache,
  299.         the autowarmed items will be the most recently accessed items.
  300.       Parameters:
  301.         class - the SolrCache implementation LRUCache or FastLRUCache
  302.         size - the maximum number of entries in the cache
  303.         initialSize - the initial capacity (number of entries) of
  304.           the cache.  (seel java.util.HashMap)
  305.         autowarmCount - the number of entries to prepopulate from
  306.           and old cache.
  307.         -->
  308.     <filterCache
  309.      class="solr.FastLRUCache"
  310.      size="512"
  311.      initialSize="512"
  312.      autowarmCount="0"/>
  313.  
  314.     <!-- Cache used to hold field values that are quickly accessible
  315.         by document id.  The fieldValueCache is created by default
  316.         even if not configured here.
  317.      <fieldValueCache
  318.        class="solr.FastLRUCache"
  319.        size="512"
  320.        autowarmCount="128"
  321.        showItems="32"
  322.      />
  323.    -->
  324.  
  325.    <!-- queryResultCache caches results of searches - ordered lists of
  326.         document ids (DocList) based on a query, a sort, and the range
  327.         of documents requested.  -->
  328.     <queryResultCache
  329.      class="solr.LRUCache"
  330.      size="512"
  331.      initialSize="512"
  332.      autowarmCount="0"/>
  333.  
  334.   <!-- documentCache caches Lucene Document objects (the stored fields for each document).
  335.       Since Lucene internal document ids are transient, this cache will not be autowarmed.  -->
  336.     <documentCache
  337.      class="solr.LRUCache"
  338.      size="512"
  339.      initialSize="512"
  340.      autowarmCount="0"/>
  341.  
  342.     <!-- If true, stored fields that are not requested will be loaded lazily.
  343.      This can result in a significant speed improvement if the usual case is to
  344.      not load all stored fields, especially if the skipped fields are large
  345.      compressed text fields.
  346.    -->
  347.     <enableLazyFieldLoading>true</enableLazyFieldLoading>
  348.  
  349.     <!-- Example of a generic cache.  These caches may be accessed by name
  350.         through SolrIndexSearcher.getCache(),cacheLookup(), and cacheInsert().
  351.         The purpose is to enable easy caching of user/application level data.
  352.         The regenerator argument should be specified as an implementation
  353.         of solr.search.CacheRegenerator if autowarming is desired.  -->
  354.     <!--
  355.    <cache name="myUserCache"
  356.      class="solr.LRUCache"
  357.      size="4096"
  358.      initialSize="1024"
  359.      autowarmCount="1024"
  360.      regenerator="org.mycompany.mypackage.MyRegenerator"
  361.      />
  362.    -->
  363.  
  364.    <!-- An optimization that attempts to use a filter to satisfy a search.
  365.         If the requested sort does not include score, then the filterCache
  366.         will be checked for a filter matching the query. If found, the filter
  367.         will be used as the source of document ids, and then the sort will be
  368.         applied to that.
  369.    <useFilterForSortedQuery>true</useFilterForSortedQuery>
  370.   -->
  371.  
  372.    <!-- An optimization for use with the queryResultCache.  When a search
  373.         is requested, a superset of the requested number of document ids
  374.         are collected.  For example, if a search for a particular query
  375.         requests matching documents 10 through 19, and queryWindowSize is 50,
  376.         then documents 0 through 49 will be collected and cached.  Any further
  377.         requests in that range can be satisfied via the cache.  -->
  378.     <queryResultWindowSize>20</queryResultWindowSize>
  379.  
  380.     <!-- Maximum number of documents to cache for any entry in the
  381.         queryResultCache. -->
  382.     <queryResultMaxDocsCached>200</queryResultMaxDocsCached>
  383.  
  384.     <!-- a newSearcher event is fired whenever a new searcher is being prepared
  385.      and there is a current searcher handling requests (aka registered).
  386.      It can be used to prime certain caches to prevent long request times for
  387.      certain requests.
  388.    -->
  389.     <!-- QuerySenderListener takes an array of NamedList and executes a
  390.         local query request for each NamedList in sequence. -->
  391.     <listener event="newSearcher" class="solr.QuerySenderListener">
  392.       <arr name="queries">
  393.         <!--
  394.        <lst> <str name="q">solr</str> <str name="start">0</str> <str name="rows">10</str> </lst>
  395.        <lst> <str name="q">rocks</str> <str name="start">0</str> <str name="rows">10</str> </lst>
  396.        <lst><str name="q">static newSearcher warming query from solrconfig.xml</str></lst>
  397.        -->
  398.       </arr>
  399.     </listener>
  400.  
  401.     <!-- a firstSearcher event is fired whenever a new searcher is being
  402.         prepared but there is no current registered searcher to handle
  403.         requests or to gain autowarming data from. -->
  404.     <listener event="firstSearcher" class="solr.QuerySenderListener">
  405.       <arr name="queries">
  406.         <lst> <str name="q">solr rocks</str><str name="start">0</str><str name="rows">10</str></lst>
  407.         <lst><str name="q">static firstSearcher warming query from solrconfig.xml</str></lst>
  408. <lst><str name="q">Aca deberia ir una query que represente una busqueda real</str></lst>
  409.       </arr>
  410.     </listener>
  411.  
  412.     <!-- If a search request comes in and there is no current registered searcher,
  413.         then immediately register the still warming searcher and use it.  If
  414.         "false" then all requests will block until the first searcher is done
  415.         warming. -->
  416.     <useColdSearcher>false</useColdSearcher>
  417.  
  418.     <!-- Maximum number of searchers that may be warming in the background
  419.      concurrently.  An error is returned if this limit is exceeded. Recommend
  420.      1-2 for read-only slaves, higher for masters w/o cache warming. -->
  421.     <maxWarmingSearchers>2</maxWarmingSearchers>
  422.  
  423.   </query>
  424.   <!--
  425.    Let the dispatch filter handler /select?qt=XXX
  426.    handleSelect=true will use consistent error handling for /select and /update
  427.    handleSelect=false will use solr1.1 style error formatting
  428.    -->
  429.   <requestDispatcher handleSelect="true" >
  430.     <!--Make sure your system has some authentication before enabling remote streaming!  -->
  431.     <requestParsers enableRemoteStreaming="true" multipartUploadLimitInKB="2048000" />
  432.  
  433.     <!-- Set HTTP caching related parameters (for proxy caches and clients).
  434.          
  435.         To get the behaviour of Solr 1.2 (ie: no caching related headers)
  436.         use the never304="true" option and do not specify a value for
  437.         <cacheControl>
  438.    -->
  439.     <!-- <httpCaching never304="true"> -->
  440.     <httpCaching lastModifiedFrom="openTime"
  441.                 etagSeed="Solr">
  442.        <!-- lastModFrom="openTime" is the default, the Last-Modified value
  443.            (and validation against If-Modified-Since requests) will all be
  444.            relative to when the current Searcher was opened.
  445.            You can change it to lastModFrom="dirLastMod" if you want the
  446.            value to exactly corrispond to when the physical index was last
  447.            modified.
  448.  
  449.            etagSeed="..." is an option you can change to force the ETag
  450.            header (and validation against If-None-Match requests) to be
  451.            differnet even if the index has not changed (ie: when making
  452.            significant changes to your config file)
  453.  
  454.            lastModifiedFrom and etagSeed are both ignored if you use the
  455.            never304="true" option.
  456.       -->
  457.        <!-- If you include a <cacheControl> directive, it will be used to
  458.            generate a Cache-Control header, as well as an Expires header
  459.            if the value contains "max-age="
  460.  
  461.            By default, no Cache-Control header is generated.
  462.  
  463.            You can use the <cacheControl> option even if you have set
  464.            never304="true"
  465.       -->
  466.        <!-- <cacheControl>max-age=30, public</cacheControl> -->
  467.     </httpCaching>
  468.   </requestDispatcher>
  469.   <!-- requestHandler plugins... incoming queries will be dispatched to the
  470.     correct handler based on the path or the qt (query type) param.
  471.     Names starting with a '/' are accessed with the a path equal to the
  472.     registered name.  Names without a leading '/' are accessed with:
  473.      http://host/app/select?qt=name
  474.     If no qt is defined, the requestHandler that declares default="true"
  475.     will be used.
  476.  -->
  477.   <requestHandler name="standard" class="solr.SearchHandler" default="true">
  478.     <!-- default values for query parameters -->
  479.      <lst name="defaults">
  480.        <str name="echoParams">all</str>
  481.        <!--
  482.       <int name="rows">10</int>
  483.       <str name="fl">*</str>
  484.       <str name="version">2.1</str>
  485.        -->
  486.      </lst>
  487.   </requestHandler>
  488. <!-- Please refer to http://wiki.apache.org/solr/SolrReplication for details on configuring replication -->
  489. <!-- remove the <lst name="master"> section if this is just a slave -->
  490. <!-- remove  the <lst name="slave"> section if this is just a master -->
  491.     <requestHandler name="/replication" class="solr.ReplicationHandler" >
  492.         <lst name="master">
  493.             <str name="enable">${enable.master:true}</str>
  494.             <!--Replicate on 'startup' and 'commit'. 'optimize' is also a valid value for replicateAfter. -->
  495.             <str name="replicateAfter">startup</str>
  496.             <str name="replicateAfter">commit</str>
  497.  
  498.             <!--Create a backup after 'optimize'. Other values can be 'commit', 'startup'. It is possible to have multiple entries of this config string.  Note that this is just for backup, replication does not require this. -->
  499.             <str name="backupAfter">optimize</str>
  500.  
  501.             <!--If configuration files need to be replicated give the names here, separated by comma -->
  502.             <str name="confFiles">solrconfig_slave.xml:solrconfig.xml,schema.xml,stopwords.txt,elevate.xml</str>
  503.            <!--The default value of reservation is 10 secs.See the documentation below . Normally , you should not need to specify this -->
  504.             <str name="commitReserveDuration">00:00:10</str>
  505.         </lst>
  506.         <lst name="slave">
  507.            <str name="enable">${enable.slave:false}</str>
  508.            <str name="masterUrl">http://192.168.211.185:8787/solr/</str>
  509.            <str name="pollInterval">00:00:60</str>
  510.         </lst>
  511.     </requestHandler>
  512.  
  513.   <!-- DisMaxRequestHandler allows easy searching across multiple fields
  514.       for simple user-entered phrases.  It's implementation is now
  515.       just the standard SearchHandler with a default query type
  516.       of "dismax".
  517.       see http://wiki.apache.org/solr/DisMaxRequestHandler
  518.   -->
  519.   <requestHandler name="dismax" class="solr.SearchHandler" >
  520.     <lst name="defaults">
  521.      <str name="defType">dismax</str>
  522.      <str name="echoParams">explicit</str>
  523.      <float name="tie">0.01</float>
  524.      <str name="qf">
  525.         PublicationId^10.0 SectionName^5.0 ApplicationName^1 PublicationName^3.0 IndexableAttribute1^2.0 IndexableAttribute2^1.5 IndexableAttribute3^1  attributes^0.5 text^0.2
  526.      </str>
  527.      <!--<str name="pf">
  528.        text^0.2 a_status^1.1 c_name^1.5 c_id^1.4 a_domain^1.9 a_name^1.7
  529.     </str>-->
  530.      <str name="bf">
  531.         PublicationId^10.0 SectionName^5.0 ApplicationName^1 PublicationName^3.0 IndexableAttribute1^2.0 IndexableAttribute2^1.5 IndexableAttribute3^1  attributes^0.5 text^0.2
  532.      </str>
  533.      <str name="fl">
  534.         PublicationId, ApplicationName, SectionName, PublishedDate, Content, DetailLink, score
  535.      </str>
  536.      <!--<str name="mm">
  537.        2&lt;-1 5&lt;-2 6&lt;90%
  538.     </str>-->
  539.      <int name="ps">100</int>
  540.      <str name="q.alt">*:*</str>
  541.      <!-- example highlighter config, enable per-query with hl=true -->
  542.      <str name="hl.fl">text ApplicationName SectionName PublicationName IndexableAttribute1 IndexableAttribute2 IndexableAttribute3</str>
  543.      <!-- for this field, we want no fragmenting, just highlighting -->
  544.      <!--<str name="f.c_name.hl.fragsize">0</str>-->
  545.      <!-- instructs Solr to return the field itself if no query terms are
  546.          found -->
  547.      <!--<str name="f.c_name.hl.alternateField">a_name</str>-->
  548.      <str name="f.text.hl.fragmenter">regex</str> <!-- defined below -->
  549.     </lst>
  550.   </requestHandler>
  551.   <!-- Note how you can register the same handler multiple times with
  552.       different names (and different init parameters)
  553.    -->
  554.   <requestHandler name="partitioned" class="solr.SearchHandler" >
  555.     <lst name="defaults">
  556.      <str name="defType">dismax</str>
  557.      <str name="echoParams">explicit</str>
  558.      <str name="qf">text^0.5 PublicationId^10.0 SectionName^2.5 PublicationName^2.5 attributes^1.5</str>
  559.      <!--<str name="mm">2&lt;-1 5&lt;-2 6&lt;90%</str>-->
  560.      <!-- This is an example of using Date Math to specify a constantly
  561.          moving date range in a config...
  562.       -->
  563.      <str name="bq">PublishedDate:[* TO NOW/DAY-1MONTH]^2.2</str>
  564.     </lst>
  565.     <!-- In addition to defaults, "appends" params can be specified
  566.         to identify values which should be appended to the list of
  567.         multi-val params from the query (or the existing "defaults").
  568.  
  569.         In this example, the param "fq=instock:true" will be appended to
  570.         any query time fq params the user may specify, as a mechanism for
  571.         partitioning the index, independent of any user selected filtering
  572.         that may also be desired (perhaps as a result of faceted searching).
  573.  
  574.         NOTE: there is *absolutely* nothing a client can do to prevent these
  575.         "appends" values from being used, so don't use this mechanism
  576.         unless you are sure you always want it.
  577.      -->
  578.     <!--<lst name="appends">
  579.      <str name="fq">inStock:true</str>
  580.    </lst>-->
  581.     <!-- "invariants" are a way of letting the Solr maintainer lock down
  582.         the options available to Solr clients.  Any params values
  583.         specified here are used regardless of what values may be specified
  584.         in either the query, the "defaults", or the "appends" params.
  585.  
  586.         In this example, the facet.field and facet.query params are fixed,
  587.         limiting the facets clients can use.  Faceting is not turned on by
  588.         default - but if the client does specify facet=true in the request,
  589.         these are the only facets they will be able to see counts for;
  590.         regardless of what other facet.field or facet.query params they
  591.         may specify.
  592.  
  593.         NOTE: there is *absolutely* nothing a client can do to prevent these
  594.         "invariants" values from being used, so don't use this mechanism
  595.         unless you are sure you always want it.
  596.      -->
  597.     <lst name="invariants">
  598.       <str name="facet.field">ApplicationName</str>
  599.       <str name="facet.field">SectionName</str>
  600.     </lst>
  601.   </requestHandler>
  602.   <!--
  603.   Search components are registered to SolrCore and used by Search Handlers
  604.  
  605.   By default, the following components are avaliable:
  606.    
  607.   <searchComponent name="query"     class="org.apache.solr.handler.component.QueryComponent" />
  608.   <searchComponent name="facet"     class="org.apache.solr.handler.component.FacetComponent" />
  609.   <searchComponent name="mlt"       class="org.apache.solr.handler.component.MoreLikeThisComponent" />
  610.   <searchComponent name="highlight" class="org.apache.solr.handler.component.HighlightComponent" />
  611.   <searchComponent name="stats"     class="org.apache.solr.handler.component.StatsComponent" />
  612.   <searchComponent name="debug"     class="org.apache.solr.handler.component.DebugComponent" />
  613.  
  614.   Default configuration in a requestHandler would look like:
  615.    <arr name="components">
  616.      <str>query</str>
  617.      <str>facet</str>
  618.      <str>mlt</str>
  619.      <str>highlight</str>
  620.      <str>stats</str>
  621.      <str>debug</str>
  622.    </arr>
  623.  
  624.    If you register a searchComponent to one of the standard names, that will be used instead.
  625.    To insert components before or after the 'standard' components, use:
  626.    
  627.    <arr name="first-components">
  628.      <str>myFirstComponentName</str>
  629.    </arr>
  630.    
  631.    <arr name="last-components">
  632.      <str>myLastComponentName</str>
  633.    </arr>
  634.  -->
  635.    <!-- The spell check component can return a list of alternative spelling
  636.  suggestions.  -->
  637.   <searchComponent name="spellcheck" class="solr.SpellCheckComponent">
  638.  
  639.     <str name="queryAnalyzerFieldType">textSpell</str>
  640.  
  641.     <lst name="spellchecker">
  642.       <str name="name">default</str>
  643.       <str name="field">PublicationName</str>
  644.       <str name="spellcheckIndexDir">./spellchecker</str>
  645.     </lst>
  646.  
  647.     <!-- a spellchecker that uses a different distance measure
  648.    <lst name="spellchecker">
  649.      <str name="name">jarowinkler</str>
  650.      <str name="field">spell</str>
  651.      <str name="distanceMeasure">org.apache.lucene.search.spell.JaroWinklerDistance</str>
  652.      <str name="spellcheckIndexDir">./spellchecker2</str>
  653.    </lst>
  654.     -->
  655.  
  656.     <!-- a file based spell checker
  657.    <lst name="spellchecker">
  658.      <str name="classname">solr.FileBasedSpellChecker</str>
  659.      <str name="name">file</str>
  660.      <str name="sourceLocation">spellings.txt</str>
  661.      <str name="characterEncoding">UTF-8</str>
  662.      <str name="spellcheckIndexDir">./spellcheckerFile</str>
  663.    </lst>
  664.    -->
  665.   </searchComponent>
  666.   <!-- A request handler utilizing the spellcheck component.  
  667.  #############################################################################
  668.  NOTE: This is purely as an example.  The whole purpose of the
  669.  SpellCheckComponent is to hook it into the request handler that handles (i.e.
  670.  the standard or dismax SearchHandler) queries such that a separate request is
  671.  not needed to get suggestions.
  672.  
  673.  IN OTHER WORDS, THERE IS REALLY GOOD CHANCE THE SETUP BELOW IS NOT WHAT YOU
  674.  WANT FOR YOUR PRODUCTION SYSTEM!
  675.  #############################################################################
  676.  -->
  677.   <requestHandler name="/spell" class="solr.SearchHandler" lazy="true">
  678.     <lst name="defaults">
  679.       <!-- omp = Only More Popular -->
  680.       <str name="spellcheck.onlyMorePopular">false</str>
  681.       <!-- exr = Extended Results -->
  682.       <str name="spellcheck.extendedResults">false</str>
  683.       <!--  The number of suggestions to return -->
  684.       <str name="spellcheck.count">1</str>
  685.     </lst>
  686.     <arr name="last-components">
  687.       <str>spellcheck</str>
  688.     </arr>
  689.   </requestHandler>
  690.   <searchComponent name="tvComponent" class="org.apache.solr.handler.component.TermVectorComponent"/>
  691.   <!-- A Req Handler for working with the tvComponent.  This is purely as an example.
  692.  You will likely want to add the component to your already specified request handlers. -->
  693.   <requestHandler name="tvrh" class="org.apache.solr.handler.component.SearchHandler">
  694.     <lst name="defaults">
  695.       <bool name="tv">true</bool>
  696.     </lst>
  697.     <arr name="last-components">
  698.       <str>tvComponent</str>
  699.     </arr>
  700.   </requestHandler>
  701.   <!-- Clustering Component
  702.       http://wiki.apache.org/solr/ClusteringComponent
  703.       This relies on third party jars which are not included in the release.
  704.       To use this component (and the "/clustering" handler)
  705.       Those jars will need to be downloaded, and you'll need to set the
  706.       solr.cluster.enabled system property when running solr...
  707.          java -Dsolr.clustering.enabled=true -jar start.jar
  708.    -->
  709.   <searchComponent
  710.    name="clusteringComponent"
  711.    enable="${solr.clustering.enabled:false}"
  712.    class="org.apache.solr.handler.clustering.ClusteringComponent" >
  713.     <!-- Declare an engine -->
  714.     <lst name="engine">
  715.       <!-- The name, only one can be named "default" -->
  716.       <str name="name">default</str>
  717.       <!--
  718.           Class name of Carrot2 clustering algorithm. Currently available algorithms are:
  719.          
  720.           * org.carrot2.clustering.lingo.LingoClusteringAlgorithm
  721.           * org.carrot2.clustering.stc.STCClusteringAlgorithm
  722.          
  723.           See http://project.carrot2.org/algorithms.html for the algorithm's characteristics.
  724.        -->
  725.       <str name="carrot.algorithm">org.carrot2.clustering.lingo.LingoClusteringAlgorithm</str>
  726.       <!--
  727.           Overriding values for Carrot2 default algorithm attributes. For a description
  728.           of all available attributes, see: http://download.carrot2.org/stable/manual/#chapter.components.
  729.           Use attribute key as name attribute of str elements below. These can be further
  730.           overridden for individual requests by specifying attribute key as request
  731.           parameter name and attribute value as parameter value.
  732.        -->
  733.       <str name="LingoClusteringAlgorithm.desiredClusterCountBase">20</str>
  734.     </lst>
  735.     <lst name="engine">
  736.       <str name="name">stc</str>
  737.       <str name="carrot.algorithm">org.carrot2.clustering.stc.STCClusteringAlgorithm</str>
  738.     </lst>
  739.   </searchComponent>
  740.   <requestHandler name="/clustering"
  741.                  enable="${solr.clustering.enabled:false}"
  742.                  class="solr.SearchHandler">
  743.      <lst name="defaults">
  744.        <bool name="clustering">true</bool>
  745.        <str name="clustering.engine">default</str>
  746.        <bool name="clustering.results">true</bool>
  747.        <!-- The title field -->
  748.        <str name="carrot.title">name</str>
  749.        <str name="carrot.url">id</str>
  750.        <!-- The field to cluster on -->
  751.        <str name="carrot.snippet">features</str>
  752.        <!-- produce summaries -->
  753.        <bool name="carrot.produceSummary">true</bool>
  754.        <!-- the maximum number of labels per cluster -->
  755.        <!--<int name="carrot.numDescriptions">5</int>-->
  756.        <!-- produce sub clusters -->
  757.        <bool name="carrot.outputSubClusters">false</bool>
  758.     </lst>    
  759.     <arr name="last-components">
  760.       <str>clusteringComponent</str>
  761.     </arr>
  762.   </requestHandler>
  763.   <!-- Solr Cell: http://wiki.apache.org/solr/ExtractingRequestHandler -->
  764.   <requestHandler name="/update/extract" class="org.apache.solr.handler.extraction.ExtractingRequestHandler" startup="lazy">
  765.     <lst name="defaults">
  766.       <!-- All the main content goes into "text"... if you need to return
  767.           the extracted text or do highlighting, use a stored field. -->
  768.       <str name="fmap.content">text</str>
  769.       <str name="lowernames">true</str>
  770.       <str name="uprefix">ignored_</str>
  771.  
  772.       <!-- capture link hrefs but ignore div attributes -->
  773.       <str name="captureAttr">true</str>
  774.       <str name="fmap.a">links</str>
  775.       <str name="fmap.div">ignored_</str>
  776.     </lst>
  777.   </requestHandler>
  778.   <!-- A component to return terms and document frequency of those terms.
  779.       This component does not yet support distributed search. -->
  780.   <searchComponent name="termsComponent" class="org.apache.solr.handler.component.TermsComponent"/>
  781.   <requestHandler name="/terms" class="org.apache.solr.handler.component.SearchHandler">
  782.      <lst name="defaults">
  783.       <bool name="terms">true</bool>
  784.     </lst>    
  785.     <arr name="components">
  786.       <str>termsComponent</str>
  787.     </arr>
  788.   </requestHandler>
  789.   <!-- a search component that enables you to configure the top results for
  790.       a given query regardless of the normal lucene scoring.-->
  791.   <searchComponent name="elevator" class="solr.QueryElevationComponent" >
  792.     <!-- pick a fieldType to analyze queries -->
  793.     <str name="queryFieldType">string</str>
  794.     <str name="config-file">elevate.xml</str>
  795.   </searchComponent>
  796.   <!-- a request handler utilizing the elevator component -->
  797.   <requestHandler name="/elevate" class="solr.SearchHandler" startup="lazy">
  798.     <lst name="defaults">
  799.       <str name="echoParams">explicit</str>
  800.     </lst>
  801.     <arr name="last-components">
  802.       <str>elevator</str>
  803.     </arr>
  804.   </requestHandler>
  805.   <!-- Update request handler.  
  806.  
  807.       Note: Since solr1.1 requestHandlers requires a valid content type header if posted in
  808.       the body. For example, curl now requires: -H 'Content-type:text/xml; charset=utf-8'
  809.       The response format differs from solr1.1 formatting and returns a standard error code.
  810.       To enable solr1.1 behavior, remove the /update handler or change its path
  811.    -->
  812.   <requestHandler name="/update" class="solr.XmlUpdateRequestHandler" />
  813.   <requestHandler name="/update/javabin" class="solr.BinaryUpdateRequestHandler" />
  814.   <!--
  815.   Analysis request handler.  Since Solr 1.3.  Use to return how a document is analyzed.  Useful
  816.   for debugging and as a token server for other types of applications.
  817.  
  818.   This is deprecated in favor of the improved DocumentAnalysisRequestHandler and FieldAnalysisRequestHandler
  819.  
  820.   <requestHandler name="/analysis" class="solr.AnalysisRequestHandler" />
  821.   -->
  822.   <!--
  823.    An analysis handler that provides a breakdown of the analysis process of provided docuemnts. This handler expects a
  824.    (single) content stream with the following format:
  825.  
  826.    <docs>
  827.      <doc>
  828.        <field name="id">1</field>
  829.        <field name="name">The Name</field>
  830.        <field name="text">The Text Value</field>
  831.      <doc>
  832.      <doc>...</doc>
  833.      <doc>...</doc>
  834.      ...
  835.    </docs>
  836.  
  837.    Note: Each document must contain a field which serves as the unique key. This key is used in the returned
  838.    response to assoicate an analysis breakdown to the analyzed document.
  839.  
  840.    Like the FieldAnalysisRequestHandler, this handler also supports query analysis by
  841.    sending either an "analysis.query" or "q" request paraemter that holds the query text to be analyized. It also
  842.    supports the "analysis.showmatch" parameter which when set to true, all field tokens that match the query
  843.    tokens will be marked as a "match".
  844.  -->
  845.   <requestHandler name="/analysis/document" class="solr.DocumentAnalysisRequestHandler" />
  846.   <!--
  847.    RequestHandler that provides much the same functionality as analysis.jsp. Provides the ability
  848.    to specify multiple field types and field names in the same request and outputs index-time and
  849.    query-time analysis for each of them.
  850.  
  851.    Request parameters are:
  852.    analysis.fieldname - The field name whose analyzers are to be used
  853.    analysis.fieldtype - The field type whose analyzers are to be used
  854.    analysis.fieldvalue - The text for index-time analysis
  855.    q (or analysis.q) - The text for query time analysis
  856.    analysis.showmatch (true|false) - When set to true and when query analysis is performed, the produced
  857.                                      tokens of the field value analysis will be marked as "matched" for every
  858.                                      token that is produces by the query analysis
  859.   -->
  860.   <requestHandler name="/analysis/field" class="solr.FieldAnalysisRequestHandler" />
  861.   <!-- CSV update handler, loaded on demand -->
  862.   <requestHandler name="/update/csv" class="solr.CSVRequestHandler" startup="lazy" />
  863.   <!--
  864.   Admin Handlers - This will register all the standard admin RequestHandlers.  Adding
  865.   this single handler is equivalent to registering:
  866.  
  867.  <requestHandler name="/admin/luke"       class="org.apache.solr.handler.admin.LukeRequestHandler" />
  868.  <requestHandler name="/admin/system"     class="org.apache.solr.handler.admin.SystemInfoHandler" />
  869.  <requestHandler name="/admin/plugins"    class="org.apache.solr.handler.admin.PluginInfoHandler" />
  870.  <requestHandler name="/admin/threads"    class="org.apache.solr.handler.admin.ThreadDumpHandler" />
  871.  <requestHandler name="/admin/properties" class="org.apache.solr.handler.admin.PropertiesRequestHandler" />
  872.  <requestHandler name="/admin/file"       class="org.apache.solr.handler.admin.ShowFileRequestHandler" >
  873.  
  874.  If you wish to hide files under ${solr.home}/conf, explicitly register the ShowFileRequestHandler using:
  875.  <requestHandler name="/admin/file" class="org.apache.solr.handler.admin.ShowFileRequestHandler" >
  876.    <lst name="invariants">
  877.     <str name="hidden">synonyms.txt</str>
  878.     <str name="hidden">anotherfile.txt</str>
  879.    </lst>
  880.  </requestHandler>
  881.  -->
  882.   <requestHandler name="/admin/" class="org.apache.solr.handler.admin.AdminHandlers" />
  883.   <requestHandler name="/admin/system"     class="org.apache.solr.handler.admin.SystemInfoHandler" />
  884.   <!-- ping/healthcheck -->
  885.   <requestHandler name="/admin/ping" class="PingRequestHandler">
  886.     <lst name="defaults">
  887.       <str name="qt">standard</str>
  888.       <str name="q">solrpingquery</str>
  889.       <str name="echoParams">all</str>
  890.     </lst>
  891.   </requestHandler>
  892.   <!-- Echo the request contents back to the client -->
  893.   <requestHandler name="/debug/dump" class="solr.DumpRequestHandler" >
  894.     <lst name="defaults">
  895.      <str name="echoParams">explicit</str> <!-- for all params (including the default etc) use: 'all' -->
  896.      <str name="echoHandler">true</str>
  897.     </lst>
  898.   </requestHandler>
  899.   <highlighting>
  900.    <!-- Configure the standard fragmenter -->
  901.    <!-- This could most likely be commented out in the "default" case -->
  902.    <fragmenter name="gap" class="org.apache.solr.highlight.GapFragmenter" default="true">
  903.     <lst name="defaults">
  904.      <int name="hl.fragsize">100</int>
  905.     </lst>
  906.    </fragmenter>
  907.  
  908.    <!-- A regular-expression-based fragmenter (f.i., for sentence extraction) -->
  909.    <fragmenter name="regex" class="org.apache.solr.highlight.RegexFragmenter">
  910.     <lst name="defaults">
  911.       <!-- slightly smaller fragsizes work better because of slop -->
  912.       <int name="hl.fragsize">70</int>
  913.       <!-- allow 50% slop on fragment sizes -->
  914.       <float name="hl.regex.slop">0.5</float>
  915.       <!-- a basic sentence pattern -->
  916.       <str name="hl.regex.pattern">[-\w ,/\n\"']{20,200}</str>
  917.     </lst>
  918.    </fragmenter>
  919.  
  920.    <!-- Configure the standard formatter -->
  921.    <formatter name="html" class="org.apache.solr.highlight.HtmlFormatter" default="true">
  922.     <lst name="defaults">
  923.      <str name="hl.simple.pre"><![CDATA[<em>]]></str>
  924.      <str name="hl.simple.post"><![CDATA[</em>]]></str>
  925.     </lst>
  926.    </formatter>
  927.   </highlighting>
  928.   <!-- An example dedup update processor that creates the "id" field on the fly
  929.       based on the hash code of some other fields.  This example has overwriteDupes
  930.       set to false since we are using the id field as the signatureField and Solr
  931.       will maintain uniqueness based on that anyway.
  932.      
  933.       You have to link the chain to an update handler above to use it ie:
  934.         <requestHandler name="/update "class="solr.XmlUpdateRequestHandler">
  935.           <lst name="defaults">
  936.             <str name="update.processor">dedupe</str>
  937.           </lst>
  938.         </requestHandler>  
  939.  -->
  940.   <!--
  941.  <updateRequestProcessorChain name="dedupe">
  942.    <processor class="org.apache.solr.update.processor.SignatureUpdateProcessorFactory">
  943.      <bool name="enabled">true</bool>
  944.      <str name="signatureField">id</str>
  945.      <bool name="overwriteDupes">false</bool>
  946.      <str name="fields">name,features,cat</str>
  947.      <str name="signatureClass">org.apache.solr.update.processor.Lookup3Signature</str>
  948.    </processor>
  949.    <processor class="solr.LogUpdateProcessorFactory" />
  950.    <processor class="solr.RunUpdateProcessorFactory" />
  951.  </updateRequestProcessorChain>
  952.  -->
  953.   <!-- queryResponseWriter plugins... query responses will be written using the
  954.    writer specified by the 'wt' request parameter matching the name of a registered
  955.    writer.
  956.    The "default" writer is the default and will be used if 'wt' is not specified
  957.    in the request. XMLResponseWriter will be used if nothing is specified here.
  958.    The json, python, and ruby writers are also available by default.
  959.  
  960.    <queryResponseWriter name="xml" class="org.apache.solr.request.XMLResponseWriter" default="true"/>
  961.    <queryResponseWriter name="json" class="org.apache.solr.request.JSONResponseWriter"/>
  962.    <queryResponseWriter name="python" class="org.apache.solr.request.PythonResponseWriter"/>
  963.    <queryResponseWriter name="ruby" class="org.apache.solr.request.RubyResponseWriter"/>
  964.    <queryResponseWriter name="php" class="org.apache.solr.request.PHPResponseWriter"/>
  965.    <queryResponseWriter name="phps" class="org.apache.solr.request.PHPSerializedResponseWriter"/>
  966.  
  967.    <queryResponseWriter name="custom" class="com.example.MyResponseWriter"/>
  968.  -->
  969.   <!-- XSLT response writer transforms the XML output by any xslt file found
  970.       in Solr's conf/xslt directory.  Changes to xslt files are checked for
  971.       every xsltCacheLifetimeSeconds.  
  972.   -->
  973.   <queryResponseWriter name="xslt" class="org.apache.solr.request.XSLTResponseWriter">
  974.     <int name="xsltCacheLifetimeSeconds">5</int>
  975.   </queryResponseWriter>
  976.   <!-- example of registering a query parser
  977.  <queryParser name="lucene" class="org.apache.solr.search.LuceneQParserPlugin"/>
  978.  -->
  979.   <!-- example of registering a custom function parser
  980.  <valueSourceParser name="myfunc" class="com.mycompany.MyValueSourceParser" />
  981.  -->
  982.   <!-- config for the admin interface -->
  983.   <admin>
  984.     <defaultQuery>*:*</defaultQuery>
  985.  
  986.     <!-- configure a healthcheck file for servers behind a loadbalancer
  987.    <healthcheck type="file">server-enabled</healthcheck>
  988.    -->
  989.   </admin>
  990. </config>
Advertisement
Add Comment
Please, Sign In to add comment