Changeset 45945
- Timestamp:
- 05/26/06 15:49:56 (2 years ago)
- Files:
-
- NXLucene/trunk/INSTALL.txt (modified) (3 diffs)
- NXLucene/trunk/README.txt (modified) (1 diff)
- NXLucene/trunk/etc/nxlucene.conf (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
NXLucene/trunk/INSTALL.txt
r45697 r45945 26 26 - Python-2.4.x_ installed. 27 27 28 - PyLucene_ == 1.9.1. 28 - PyLucene_ == 1.9.1. 29 29 30 30 - ZopeInterface_ >= 3.0.1. This depends of the Twisted_ requirements. … … 162 162 - Recompile a PyLucene_ version from source your system can support 163 163 with UCS2 support. (Ubuntu users you will have to do that) 164 164 165 165 - Install a second Python for your own programs and leave the system 166 166 Python alone. … … 185 185 ImportError: No module named web 186 186 187 188 Lucene store directory 189 ---------------------- 190 191 DO NOT create the store directory yourself, let NXLucene do it, just make 192 sure the user lauching the process has enough rights to do so. 193 194 In case the directory exists but is empty, the server will fail and show 195 logs like:: 196 197 LuceneServer - INFO - Request <PyLucene.BooleanQuery; proxy of C++ 198 org::apache::lucene::search::BooleanQuery instance at <PyCObject object at 199 0xb6106b18>> failed... 200 201 187 202 .. Emacs 188 203 .. Local Variables: NXLucene/trunk/README.txt
r45696 r45945 38 38 .. _Python: http://www.python.org/ 39 39 .. _Lucene: http://lucene.apache.org/ 40 .. _ZopeInterface: http://zope.org/Products/ZopeInterface 40 .. _ZopeInterface: http://zope.org/Products/ZopeInterface 41 41 .. _Twisted: http://twistedmatrix.com/projects/core/ 42 42 NXLucene/trunk/etc/nxlucene.conf
r36284 r45945 1 1 <?xml version="1.0" encoding="UTF-8"?> 2 2 <nxlucene_conf xmlns="http://namespaces.nuxeo.org/nxlucene"> 3 <!-- The indexes will be stored within the 'var' subdir of this instance --> 3 <!-- 4 The store directory can be absolute or relative to the NXLucene instance. 5 In the given example, indexes will be stored within the 'var' 6 subdirectory of the instance. 7 DO NOT CREATE THE DIRECTORY YOURSELF, let NXLucene do it, just make sure 8 that the user launching the process has enough rights to do so. 9 --> 4 10 <store_dir> 5 11 var/lucene-store … … 23 29 </service> 24 30 </nxlucened> 25 31 26 32 <logs> 27 33 <level>DEBUG</level>
