Displaying 2 results from an estimated 2 matches for "tcpserv".
Did you mean:
tcpserver
2007 Feb 07
0
ftss project (was: The dificult of develop an "Solr-like" to Xapian)
...king on something similar a little while ago
> (back before remote xapian could write to the DB), but I ran into a
> couple of problems. The python bindings are not as complete as having
> the actual C++ API, so you cannot access certain methods you would
> need to roll your own xapian-tcpserv.
>
> Such an auxiliary xapian-manager would be very useful, though, and I
> think that everyone who's using xapian in production ends up rolling
> their own sort of thing. Even with remote databases having write
> capability, there is still the one-write-at-a-time limitation, wh...
2010 Sep 01
1
DatabaseLockError: REMOTE: unable to get write lock
Hi,
I'm using xapian(1.2.2) python interface to connect remote xapian-tcpserv daemon.
I'm starting the daemon as given below:
xapian-tcpsrv --port 9100 --interface 127.0.0.1 --writable ./xapiandb/
and in script.py:
import xapian as xa
db = xa.remote_open_writable('localhost', 9100)
# other stuff
# ...
script is a long running program, and...