similar to: Another broken link

Displaying 20 results from an estimated 2000 matches similar to: "Another broken link"

2015 Jan 20
2
Question on "single writer, multiple reader"
On Sun, Jan 18, 2015 at 04:25:29PM +0000, James Aylett wrote: > That?s exactly how it?s supposed to work. ?Eventually? (once the > writer gets sufficiently far ahead of the reader), the reader will get > a DatabaseModifiedError and will have to re-open the database, but > until then it?s up to it when it does so. You may wish to do it every > N requests, or every K seconds, or only
2011 Mar 26
2
Building Xapian on Mac OSX 10.6.x
I have a project that requires Xapian for a 32 bit arch, but Mac defaults to 64 bit. How can I configure Xapian core and Xapian python bindings to build 32 bit?
2011 Mar 26
2
Building Xapian on Mac OSX 10.6.x
I have a project that requires Xapian for a 32 bit arch, but Mac defaults to 64 bit. How can I configure Xapian core and Xapian python bindings to build 32 bit?
2015 Jan 16
2
Question on "single writer, multiple reader"
Hi, dear Xapianers! I've been using Xapian in my project recently. The feature "single writer, multiple reader" is one of my favorite, but currently I can't make it work. My goal is to add more documents to the database increamentally, while the Xapian search process is not stopped. I followed "quickstartindex.cc" and "quickstartsearch.cc" on
2012 Jan 15
3
I'm trying to relate what I know about Omega/Scriptindex with the actual data
James, thanks for the explanations. I misread the notes. As an exercise, I'm trying to convert an existing project that currently uses Scriptindex and Omega to direct Xapian API calls. I did a (I think) complete dump of a document with delve -r 565 -d database and I see things like subject='A typical subject' with a corresponding set of terms like Sa Stypical Ssubject Which
2011 Apr 27
2
Omindex: what are the default numbered indexes?
> -----Original Message----- > Date: Tue, 26 Apr 2011 13:35:20 +0100 > From: James Aylett <james-xapian at tartarus.org> > Subject: Re: [Xapian-discuss] Omindex: what are the default numbered > indexes? > To: <xapian at catcons.co.uk> <xapian at catcons.co.uk> > Cc: 'Xapian Discussion' <xapian-discuss at lists.xapian.org> > Message-ID:
2011 Apr 09
1
Pretty URLs for omega?
Hello :-) How can the default omega URL be prettified? http://<host_ID>/cgi-bin/omega is working fine, giving us all omega's default CGI parameters. Now we want multiple databases which could be accessed using http://<host_ID>/cgi-bin/omega?DB=<index_ID> but this is starting to get messy. It will get messier when we start to customise templates with
2010 Dec 16
2
Failing to build PHP Bindings OSX 10.6
Very odd this, I have downloaded the latest xapian-core and bindings. Installed xapian-core no problem in /usr/local/xapian However I am getting very strange errors when running make when trying to install the PHP bindings, it configures fine. Paste bin here: http://pastebin.com/JWViJz4b I am missing something obvious I know... I have built 1.0 on this machine in the past fine... John
2011 Jun 06
1
Higher weight on exact matches when doing wild card search
Hi I am working on a search which needs wild card support. Unfortunately this makes some searches for short words return bad results, because they match a lot of words that aren't related to what the user actually wants. I'm wondering if there's a good way to make specific matches get a higher weight than longer words? Example: when search for car, documents containing car are
2011 Jun 14
1
Problem installing Xapian python bindings on Mac OS X
I am using xapian-bindings-1.0.16.tar.gz ./configure --prefix=$HOME PYTHON=/usr/bin/python PYTHON_LIB=/Library/Python/2.6/site-packages --with-python --without-ruby --without-php --without-tcl and I get configure: error: Can't find xapian-config, although the xapian-core runtime library seems to be installed. If you've installed xapian-core from a package, you probably need to install
2012 Jan 15
1
Wiki broken link
There's a broken link on the wiki at http://trac.xapian.org/wiki/SampleCode. The first Perl example points to http://svn.xapian.org/examples/?root=Search-Xapian but that url gives a 404 error. I'd fix it but I don't know where the examples are kept these days. Jim.
2016 Feb 15
3
Issues in Example code
Hi My name is Shiv and I am student at IIIT-D ( http://www.iiitd.edu.in/ ) pursuing my undergrad education in Computer Science. I am currently in my final year. I am following the Xapian Gsoc guide ( https://trac.xapian.org/wiki/GSoC%20Guide#Mentoring). I have successfully checked out and built the code. I am trying out the python codes given at (
2018 Feb 08
7
How to ensure thread-safety
Hi, I have read the concurrency webpage from the Xapian documentation: http://getting-started-with-xapian.readthedocs.io/en/latest/concepts/concurrency.html But it is still not clear to me how to ensure thread-safety when using libxapian (C++ API). Usually when doing multi-threading many threads can read the same variable concurrently without locking provided none of the threads modifies the
2011 Dec 07
2
How to choose the proximity between search words
Hi, I'd like to know how we can choose the distance between two words that we search in a text. I know there is an "op_near" operator but I don't know how I can specified that the number of words between the two specified words should not exceed 10 or 20 or x words. I'm really sorry for my terrible English, I hope I'm understandable!
2019 Jul 02
1
Xapian user search query syntax
I am using Xapian as the search engine in Hyperkitty for GNU Mailman 3. Is there a page of instructions for end users on the search syntax, such as wildcards and boolean searches? My end users would appreciate such a thing. I am unable to find anything like this. Andrew Bernard
2017 Apr 08
2
Omega: Missing support for newer weighting schemes
Hi, In my explorations of Omega codebase, I have found that Omega is currently missing support for newer weighting schemes added in 1.4.1 (BM25+, PL2+, Dir+). I'd submit a PR addressing that but as I think I might be missing something so just wanted to check if there's a particular reason for that? P.S. Finally back after a long week. Been eagerly waiting for a weekend since the
2011 Oct 18
2
patch proposal: omindex library or daemon
Olly (looking at commit logs, I think this is your dept :-) For apps which re/index files frequently and need format conversion, I'd like to propose a patch for one of... Omindex library (thread safe): Omindex::init(options) // struct Omindex::options { ... } initialize mime_map, store default options session = new Omindex::Session(db_pathname) user threads use different sessions
2011 Oct 27
1
Apache conf.d file for omega?
Hello :-) Sorry if this question is na?ve and confused; I'm new to Apache configuration. Can Apache be configured to run omega via a file in the conf.d directory rather than a virtual server? I have been using a virtual server on port 80 but now need to run nagios on port 80 too and do not want to ask the users to start using a URL with a non-standard port for omega. KISS. AFAIK omega
2011 Mar 20
1
GSoC 2011 - Improve Existing Bindings
Dear Olly, I am very excited to contribute in open source community through the platform of Google Summer of Code 2011. I have visited the ideas of ?Xapian? at http://trac.xapian.org/wiki/GSoCProjectIdeas for GSoC 2011. I am interested in working on ?Improve Existing Bindings?. The reason for my interest is that I have previously worked on .NET related projects both in VB and C#. I also have
2011 Jun 30
1
"Exception: Couldn't read format template `query' (Permission denied)" - help?
HI there, I am running Fedora 15. I run everything as SU by default. I am trying to get Xapian/Omega installed and running. I installed verion 1.26 of xapian from here: http://xapian.org/download I followed the example listed here: http://trac.xapian.org/wiki/OmegaExample I searched the archives and found a reference with some questions from other users so I'll answer