Displaying 4 results from an estimated 4 matches for "748646ad".
2004 Jul 13
2
Multithread problem: Writing to a db disables reading from another one
...pening 1.db
1.db results: 30
Reader reopening 1.db
1.db results: 30
Reader reopening 1.db
1.db results: 30
1.db results: 30
1.db results: 30
1.db results: 30
Writer flushing 1.db
1.db results: 30
1.db results: 30
1.db results: 30
Reader reopening 1.db
1.db results: 40
--
Robert Pollak
GPG Key ID: 748646AD
-------------- next part --------------
#include <xapian.h>
#include <pthread.h>
#include <unistd.h>
#include <iostream>
#include <sstream>
#define MAX_THREADS 3
using namespace std;
pthread_t _writer1, _writer2;
pthread_t _readers[MAX_THREADS];
pthread_mutex_t outp...
2004 Jun 01
1
Searching without flush?
...dexing and searching.
Currently each search causes a database flush, which is slow.
How can I avoid this flush?
It seems that I have to modify Xapian to either
- search only the already flushed data (eventually missing some hits)
or
- search the un-flushed data, too.
--
Robert Pollak
GPG Key ID: 748646AD
2004 Jun 15
1
QueryParser memory leak?
...QueryParser owns the Stopper and Stem instances it points to (since it
deletes them e.g. in set_stemming_options), but it does not delete them
at destruction.
(Btw., I don't test before deleting, but maybe "delete 0;" does not work
on all platforms?)
--
Robert Pollak
GPG Key ID: 748646AD
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: queryparser-leak.patch
URL: <http://lists.xapian.org/pipermail/xapian-devel/attachments/20040615/3d324883/attachment.ksh>
2004 Jul 19
2
large Xapian index files
...quartz database filesize is limited only by the OS and file system. Can you
confirm from your experience that there is no 2GB limit?
(I have grepped for "size_t" and "off_t" in the xapian-core code, but I do not
know how to interpret what I see.)
--
Robert Pollak
GPG Key ID: 748646AD