README.rdoc in rsolr-1.0.8 vs README.rdoc in rsolr-1.0.9
- old
+ new
@@ -34,10 +34,17 @@
== Timeouts
The read and connect timeout settings can be set when creating a new instance of RSolr:
solr = RSolr.connect(:read_timeout => 120, :open_timeout => 120)
+== Retry 503s
+A 503 is usually a temporary error which RSolr may retry if requested. You may specify the number of retry attempts with the :retry_503 option.
+
+Only requests which specify a Retry-After header will be retried, after waiting the indicated retry interval, otherwise RSolr will treat the request as a 500. You may specify a maximum Retry-After interval to wait with the :retry_after_limit option (default: one second).
+ solr = RSolr.connect(:retry_503 => 1, :retry_after_limit => 1)
+
+
== Querying
Use the #get / #post method to send search requests to the /select handler:
response = solr.get 'select', :params => {
:q=>'washington',
:start=>0,
@@ -174,34 +181,27 @@
* Commit, do not mess with rakefile, version, or history
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
* Send me a pull request. Bonus points for topic branches.
==Contributors
-* Antoine Latter
-* Dmitry Lihachev
-* Lucas Souza
-* Peter Kieltyka
-* Rob Di Marco
+* Nathan Witmer
* Magnus Bergmark
-* Jonathan Rochkind
-* Chris Beer
-* Craig Smith
+* shima
* Randy Souza
-* Colin Steele
-* Peter Kieltyka
-* Lorenzo Riccucci
-* Mike Perham
* Mat Brown
-* Shairon Toledo
-* Matthew Rudy
-* Fouad Mardini
* Jeremy Hinegardner
-* Nathan Witmer
-* "shima"
+* Denis Goeury
+* shairon toledo
+* Rob Di Marco
+* Peter Kieltyka
+* Mike Perham
+* Lucas Souza
+* Dmitry Lihachev
+* Antoine Latter
==Author
Matt Mitchell <mailto:goodieboy@gmail.com>
==Copyright
-Copyright (c) 2008-2010 Matt Mitchell. See LICENSE for details.
\ No newline at end of file
+Copyright (c) 2008-2010 Matt Mitchell. See LICENSE for details.