search for: bdsp

Displaying 6 results from an estimated 6 matches for "bdsp".

Did you mean: bdisp
2006 May 10
1
Documentation for the PHP OO wrapper
...which would allow mechanical changes to match PHP syntax). > > I wrote an xslt script to test the idea (It is one of the first I write, so there are surely a lot of "bad things" in it, don't hesitate to point them !). You can grab the xslt file from here (28 Kb) : http://www.bdsp.tm.fr/aed/xapian/wrapperDoc/doc.xslt It produces a all-in-one html file (331Kb) : http://www.bdsp.tm.fr/aed/xapian/wrapperDoc/index.html (Don't mind about disliking the look of the result : it is done with a css stylesheet included in the file and can easily be changed. ;-)) The only reason...
2006 May 17
3
QueryParser lowercase / uppercase and stemming
Hello. There are several problems I couldn't find a solution. 1. QueryParser does not perform stemming I am working with PHP5 and use the xapian wrapper written by Daniel M?nard I build a query using parseQuery. Output of the parsed query shows that terms are not stemmed, although a stemmer is set ( see code snippet) # create a XapianDatabase object to search in $db = new
2007 Jun 13
1
Resource version in php_xapian.dll (windows)
(following my mail in xapian-discuss on 11.06) I revisited my resource file and came up with a much simpler solution. I'm now using the new version.h file (no need to duplicate version strings) and add php-src to the include path given to rc.exe so I can get the precise php version. On my windows, the resulting dll appears as "Xapian 1.0.1 bindings for PHP 5.2.2" Here is what I
2007 May 15
1
Document ID 0 is invalid... but not always...
Note: this is rather long and not very important and I don't want to prevent the team from releasing version 1.0, so go on reading only if you have too much free time !!! ;-) 0 is not a valid document ID, never, ever, but I just found a special case in which xapian will create a record and return 0 for the newly created record. In fact, I was "hacking", trying to store metadata
2007 Jun 13
2
Compiling 1.0.1 on windows : version.h
I tried to compile xapian 1.0.1 under windows but the new /msvc/version.h file has #undef XAPIAN_HAS_REMOTE_BACKEND which prevents /backends/dbfactory_remote.cc to be built. The old (hand-written) version.h.win32 had it defined to 1. Everything build fine if I replace #undef with #define in version.h. Cheers, -- Daniel M?nard
2007 Nov 08
1
QueryParser : some remarks
Hi to all, First, I would like to say a big thank you for the work which was done on my 'wish bug' to allow mapping one field to multiple prefixes (http://www.xapian.org/cgi-bin/bugzilla/show_bug.cgi?id=93). That's great! I have upgraded to 1.0.4 and I am revisiting my code, replacing the php query parser I wrote with Xapian's one. Everything works well, but I have some