You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2006/05/15 22:35:38 UTC

[Solr Wiki] Trivial Update of "FAQ" by RespaldoD

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.

The following page has been changed by RespaldoD:
http://wiki.apache.org/solr/FAQ

------------------------------------------------------------------------------
   1. Delete teh `index` directory in your data directory
   1. Start your application server (Solr will detect that there is no existing index and make a new one)
   1. Re-Index your data
-  
+ 
  == Why doesn't copyField work with dynamic fields? ==
  
  The `<copyField>` directive requires that the source and dest fields both be full field names -- not wild card expressions.  so if you have the following dynamic fields defined...
@@ -89, +89 @@

  
  == Why does the request time out sometimes when doing commits? ==
  
- Internal, Solr does nothing to time out any requests -- it let's both updates and queries take however long they need to take to be processed fully.  However, the servlet container being used to run Solr may impose arbitrary timeout limits on all requests.  Please consult the documentation for you Serlvet container if you find that this value is too low.
+ Internally, Solr does nothing to time out any requests -- it lets both updates and queries take however long they need to take to be processed fully.  However, the servlet container being used to run Solr may impose arbitrary timeout limits on all requests.  Please consult the documentation for youy Serlvet container if you find that this value is too low.
  
  (In Jetty, the relevant setting is "maxIdleTime" which is in milliseconds)