similar to: Re: xapian python bindings

Displaying 20 results from an estimated 10000 matches similar to: "Re: xapian python bindings"

2009 Sep 15
1
can´t build ruby bindings with msvc (xapian 1.1.2)
hi i?m trying to build the ruby bindings in xapian 1.1.2 on win xp. i?ve 1. pulled the tags/1.1.2 revision from svn 2. built SWIG from repo via MinGW and MSYS (swig -help works, so build seems ok to me) 3. built xapian-core following readme in ...\win32msvc, apitest doesn?t give errors now if i try to build: "...\ruby>nmake SWIGBUILD=1 Microsoft (R) Program
2016 May 10
0
Xapian 1.3.6 development snapshot released
I'm happy to be able to announce that Xapian 1.3.6 is now available. Please note that 1.3.x releases are development releases - they are made to encourage earlier and wider use and testing of new and changed code. We're pretty close to a stable 1.4.0 release at this point - there's currently only one ticket still pegged on 1.3.x, which is to sort out some details of the
2016 May 03
0
Weighting recent results
On Fri, Apr 22, 2016 at 12:23:15PM -0400, Alex Aminoff wrote: > I did some digging and found a thread from 2011 talking about how to > subclass Xapian::PostingSource in order to incorporate the date or > recency of a document in its weighting: > > http://thread.gmane.org/gmane.comp.search.xapian.general/8849/focus=8856 > > As in that thread, I want to be clear that I
2006 Jan 13
2
Compiling xapian on Ubuntu Breezy
It's not hard to compile the normal xapian stuff but if you download svn it can be tricky to compile the complete release. 1) Get swig 1.3.26 or higher from swig.org. The Breezy packages are too old. The rest is only needed for cvssearch. 2) `apt-get install libdb4.1++-dev` 3) Download the recent pstream.h from pstreams.sf.net Replace cvssearch/db/pstream.h and
2016 May 03
2
Weighting recent results
On 5/2/2016 9:03 PM, Olly Betts wrote: > On Fri, Apr 22, 2016 at 12:23:15PM -0400, Alex Aminoff wrote: >> I did some digging and found a thread from 2011 talking about how to >> subclass Xapian::PostingSource in order to incorporate the date or >> recency of a document in its weighting: >> >> http://thread.gmane.org/gmane.comp.search.xapian.general/8849/focus=8856
2016 Dec 04
1
swig-3.0.7 for xapian-bindings to tcl
I recently wrote a post on installing "Git for Windows" on a legacy XP SP3 Home box. http://nurmi-labs.blogspot.com/2016/11/git.html I added some missing files from the MSYS2 packages which were removed for the downloadable "Git for Windows" installer and a compiler and some additional libraries. For other utilities (bison, flex, info, m4, make, and csh/tcsh), and code I
2013 Feb 14
1
Go (golang) bindings for Xapian?
Hi, is anyone working on Xapian bindings for Go? SWIG supports Go since version 2.0 (http://www.swig.org/Doc2.0/Go.html), but there's some Go-specific code that needs to be written. Unfortunately, I have 0 experience both with SWIG and hacking on the Xapian bindings, so I probably cannot do this as a weekend project. It would come in very handy though. Regards, Marinos
2017 Sep 12
0
perl bindings to Xapian::Query
On Tue, Sep 12, 2017 at 04:47:52PM -0400, Alex Aminoff wrote: >         my $filterepoch = time() - ($datefilter * 60 * 60 * 24); >         my $filterquery = > Xapian::Query->new(OP_VALUE_GE,I_DATE,$filterepoch); I think your issue here is that $filterepoch is a number rather than a string (a Perl scalar can have different representations internally). In t/valuerange.t this testcase
2007 Jun 04
0
Patch to enable python bindings in absence of docs build
As discussed on IRC. The naming conventions aren't ideal, but the intent feels right and it works for me. J -- /--------------------------------------------------------------------------\ James Aylett xapian.org james at tartarus.org uncertaintydivision.org -------------- next part -------------- Index:
2006 Apr 19
1
ANN: Alpha Ruby bindings for Xapian now available
Dear Xapian community, We've been looking for a search engine to integrate with our Rails applications. Xapian seems to be the most robust and mature of any open source solution out there. But, there were no Ruby bindings. So... I've started work on Ruby SWIG bindings for Xapian. My work is still alpha-quality; expect bugs and expect API changes before we're done. It's
2006 Aug 03
1
An error while testing Python 2.5 and xapian in Win32
Hi: After a succesful installation of .dll xapian using VS2005 and swigwin-1.3.29, I attempted to do my first tests, however, I had the next problem: .python Python 2.5b2 (r25b2:50512, Jul 11 2006, 10:16:14) [MSC v.1310 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> >>>import sys
2011 Mar 19
1
A question about project " Lua bindings for Xapian"
Hello all, I am interested in the project "Supporting another language(Lua)". It difficulty is medium-hard. Then my question is: How many lines of code does it need to implement this project? I found some code in other languages binding is generated by SWIG. Then what part of code do we need to write, and what part of code are generated by SWIG? Best Regards, Xiaona
2008 Apr 30
1
Python bindings smoketest error
Hi all, I'm getting an error in the smoketest. I'm using latest Swig and Python bindings from SVN-HEAD: File "smoketest.py", line 23, in <module> import xapian File "C:\work\xapian\xapian-SVN\xapian-core\win32\Release\Python\xapian.py", line 2099, in <module> ValueRangeProcessor.__call__ = ValueRangeProcessor.__call AttributeError: type
2009 Jan 29
1
Xapian Ruby bindings do not implement full multi-value-sorting functionality?
Hello, this is a question that could be answered by collaborators of the Ruby bindings. Today I've played around with the Xapian::MultiValueSorter class. I've set everything up and then I tried following on an instance of Xapian::Enquire: : enquire = Xapian::Enquire.new(database) enquire.query = options[:query] : sorter = Xapian::MultiValueSorter.new sorter.add(0, true) sorter.add(1,
2006 Mar 07
1
How to rebuild python-bindings using SWIG
Dear xapian developers, I've added a function named "set_sort_by_relevance_then_value()". Now I want to rebuild python-bindings to include the new function and test if it works or not. I guess there is a way to rebuild all of the binding modules include the new function. I am not used to SWIG. I want to which files I need to change and how to build it. Thanks! Sungsoo Kim
2010 Dec 01
2
Using a subclass of MatchSpy in Python bindings
Hi everyone, I've searched the mail archives and I haven't been able to find a solution to this. I want to subclass a MatchSpy in the Python bindings and have Enquire use it. However, when I try to do so, I get a TypeError raised. The following example illustrates this: >>> import xapian >>> database = xapian.Database(dbpath) >>> class
2012 Mar 14
0
Xapian 1.3.0 development snapshot released
Xapian 1.3.0 is now available. Please note that 1.3.x releases are development releases - they are made to encourage earlier and wider use and testing of new and changed code so that 1.4.0 can both happen sooner and be better than otherwise. Our record with 1.1.x was very good - all the bugs I am aware of were either in new features, or were also present in the corresponding 1.0.x release. But
2013 May 04
0
Xapian 1.3.1 development snapshot released
After rather longer than expected, Xapian 1.3.1 is now available. Please note that 1.3.x releases are development releases - they are made to encourage earlier and wider use and testing of new and changed code so that 1.4.0 can both happen sooner and be better than otherwise. Our record with 1.1.x was very good - all the bugs I am aware of were either in new features, or were also present in the
2016 Jun 02
0
Xapian 1.3.7 development snapshot released
I'm happy to be able to announce that Xapian 1.3.7 is now available. This development snapshot is essentially a release candidate for 1.4.0, so please test with it and report any issues you hit. The plan is to release 1.4.0 on or shortly after 2016-06-21 - this is the date on which Unicode 9.0.0 is due to be officially released, so we'll ship 1.4.0 with support for that (this is one
2018 Apr 03
3
how to build 64bit xapian using MSVC2017?
hi, Olly Betts, Thank you for you answer. My xapian version is 1.2.8. Need I upgrade it to 1.4 if I want to build it with MSVC2017 x64? lishu at fiberhome.com From: Olly Betts Date: 2018-03-29 11:10 To: 李澍; xapian-discuss Subject: Re: how to build 64bit xapian using MSVC2017? On Tue, Mar 20, 2018 at 08:28:24PM +0000, Olly Betts wrote: > Related to this, the appveyor build is