From 23b9281b83a13e48f1fa351a9831235869dabb02 Mon Sep 17 00:00:00 2001 From: David Sauve Date: Thu, 29 Apr 2010 12:27:32 -0400 Subject: [PATCH] Corrected link to gist with sample cronjob for update_index command --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index cf03096..fd05e27 100644 --- a/README.rst +++ b/README.rst @@ -21,7 +21,7 @@ Notes ----- - Due to an issue with mod_python possibly causing deadlocks with Xapian (`issue #364 `_), when Python is not invoked through the "main interpreter", mod_python is not supported with xapian-haystack. It may work, with some tweaking, but your mileage will vary. -- Because Xapian does not support simultaneous ``WritableDatabase`` connections, it is *strongly* recommended that users take care when using ``RealTimeSearchIndex`` to either set ``WSGIDaemonProcess processes=1`` or use some other way of ensuring that there are not multiple attempts to write to the indexes. Alternatively, use ``SearchIndex`` and a cronjob to reindex content at set time intervals (sample cronjob can be found `here _`) or derive your own ``SearchIndex`` to implement some other form of keeping your indexes up to date. +- Because Xapian does not support simultaneous ``WritableDatabase`` connections, it is *strongly* recommended that users take care when using ``RealTimeSearchIndex`` to either set ``WSGIDaemonProcess processes=1`` or use some other way of ensuring that there are not multiple attempts to write to the indexes. Alternatively, use ``SearchIndex`` and a cronjob to reindex content at set time intervals (sample cronjob can be found `here `_) or derive your own ``SearchIndex`` to implement some other form of keeping your indexes up to date. Installation ------------