Displaying 20 results from an estimated 200 matches similar to: "Warning from ExtUtils::MakeMaker"
2007 Jan 19
3
Are these numbers resonsable?
I have only one box[1] running 3 sub-systems[2] at my system, are these
numbers resonsable[3]??
[1] - From dmesg (FreeBSD 6.1-RELEASE):
AMD Sempron(tm) Processor 3000+ (1808.33-MHz K8-class CPU)
real memory = 2080309248 (1983 MB)
avail memory = 1997869056 (1905 MB)
ad0: 76350MB <SAMSUNG SP0802N TK200-04> at ata0-master UDMA33
[2] The sub-systems are:
1 - A server giving adreesses of
2012 Jan 20
2
Perl version of sortable_serialize missing?
I attempted to use the sortable_serialize function from perl, however
doesn't seem to exist. The only occurrence of the string "sortable" in
the /usr/local/perl/5.10.1/Search/ tree is in the pod in Xapian.pm.
What am I doing wrong?
use Search::Xapian;
...
$doc->add_value(4,sortable_serialize($recdate));
Undefined subroutine &main::sortable_serialize called
2010 Dec 18
1
Xapian index size 475GB = 170 million documents (URLs)
Xapians,
I am maintaining about two indexes for my search engines which
approximately is each the same size. I would like to share this
knowledge with you, since many of you have never seen Xapian index of
this size. And of course you can search the index by yourself at
- http://myhealthcare.com/
- http://find1friend.com/
I need 2 x 100 million more documents into each index, and I hope it
will
2023 May 25
1
LIttle problem when installing xapian-bindings-1.4.22
On Wed, May 24, 2023 at 02:18:50AM +0000, nebulaaksum wrote:
> I have more question. After successfully installing xapian-bindings-1.4.22. I continued to install xapian-omega-1.4.22. But it did not even pass the configuration step.
> I intend to install xapian-omega-1.4.22 at
> /usr/local/xapian-omega-1.4.22. I do my building from a separate
> build directory lest I clutter my
2008 Nov 21
1
Multiple databases vs Single large database
Hi
I've decided to use xapian because my files table in my mysql database is going
to grow very large, and it seems mysql isn't good at full text searching. I'm
doing this with the php wrapper by the way.
The way my system is set out, each user has their own set of files, and when
doing a search it is going to be for a specific user's file (based on file
name, title,
2016 Sep 09
3
problem with bindings configure script
All,
I'm trying to compile xapian core and bindings under cygwin. I have no
issues running the configure script and then compiling core, but bindings
is giving me some issues. I'm running the configure script for bindings as
follows:
in xapian-bindings-1.4.0 directory.
./configure XAPIAN_CONFIG=/home/John/xapian-core-1.4.0 --with-java and had
two issues.
The first I solved by doing
2016 Aug 03
3
Problem with configuring Xapian
Hi all,
> It would be better to use the XO_LIB_XAPIAN macro provided by
> xapian-core instead of writing your own code to probe for
> xapian-config.
>
> Everything from line 3 to line 18 of your current configure.ac could be
> replaced with just:
>
> XO_LIB_XAPIAN
>
> If you've installed xapian-core then the macro should just be
> found automatically.
I
2016 Jun 19
2
R bindings for Xapian - Project progress
On Sat, Jun 18, 2016 at 07:10:43PM +0530, Amanda Jayanetti wrote:
> > If you've installed xapian-core then the macro should just be
> > found automatically.
>
> When I replace the code block with the macro, it doesn't get automatically
> detected. Could you kindly tell me what could be causing this?
You probably need to specify XAPIAN_CONFIG:
$ ./configure
2016 Sep 14
1
problem with bindings configure script
Olly,
I think the confdefs.h issue was due to the fact that I was using
XAPIAN_CONFIG to point to the configure script, rather than the
xapian_config executable created when making xapian_core, as pointed out by
James.
Also, as a general note, when trying to make the bindings, I had a problem
when make was trying to compile the java source in org/xapian
The following line:
$(JAVAC)
2016 Jun 18
2
R bindings for Xapian - Project progress
On Mon, May 30, 2016 at 04:35:15PM +0100, James Aylett wrote:
> 7. In configure.ac, you should default to xapian-config, not
> xapian-config-1.3; anyone who's using a development version can point
> XAPIAN_CONFIG to the relevant binary. It isn't a huge issue right now
> (since you're not targetting Xapian 1.2), but 1.4 should be out during
> the course of GSoC, and
2011 Sep 23
2
understanding stemming and synonyms
I am working with version 1.2.7 and want to use stemming and synonyms.
I use the perl-bindings and get some problems.
First of all: the perl-bindings dont allow the QueryParser a third
argument when calling parse_query! So i cannot set a default prefix
(which perhaps is the solution to my problem, but later more)
i have a simple testcase:
3 documents, every document only has one word:
2023 May 23
1
LIttle problem when installing xapian-bindings-1.4.22
Oh Olly, you are so kind. Thank you so much. I think you pinned out my problem. I have installed the xapian-core-1.4.22 at /usr/local/xapian-core-1.4.22 to avoid cluttering. I will try to do what you have given me. if that does not work, I will try to remove the older xapian-core-1.4.18 library wherever it is if I can locate it. Then I will give the path for the new one. GTK is just one of the
2023 May 23
3
LIttle problem when installing xapian-bindings-1.4.22
On Tue, May 23, 2023 at 03:06:50AM +0000, nebulaaksum wrote:
> You said, " Generally xapian-bindings with a newer xapian-core (within
> the same stable release series) should work."
> But it is the newer xapian-core-1.4.22 which is installed in my system
> already that is having Xapian library version 1.4.18, So the
> xapian-bindings-1.4.22 is saying the core an older
2016 Sep 12
2
problem with bindings configure script
James,
That worked, thanks, but with a caveat. I don't know if this is a
limitation of autoconf/configure, but jni.h wants to include jni_md.h,
which is located in JNI_INCLUDE_DIR/win32, which is not automatically
searched. I was able to work around this by moving jni_md.h from the win32
sub directory to the same directory as jni.h. No idea who's bug this is, if
it is legitimately a bug,
2016 May 30
5
R bindings for Xapian - Project progress
Hi all,
I developed the basic structure of xapian_index() function which enables
the content of a data frame to be indexed with Xapian search engine
library. I pushed it to a git repository at
https://github.com/amandaJayanetti/RXapian.
It'd be a great favour if Mr. Dirk Eddelbuettel as well as other interested
developers could kindly review the function and give me some feedback on it.
2023 Jun 06
1
LIttle problem when installing xapian-bindings-1.4.22
On Thu, May 25, 2023 at 05:18:28PM +0000, nebulaaksum wrote:
> Here is what I tried:
> 1.
> gebreselema at system76-pc:~/myinstalls/myxapian/xapian-omega-1.4.22/xapianomegabuild$ ./configure XAPIAN_CONFIG=/usr/local/xapian-core-1.4.22/bin/xapian-config \--prefix=/usr/local/xapian-omega-1.4.22
> bash: ./configure: No such file or directory
Looks like you've created a
2015 Oct 28
2
Trying to get Search::Xapian perl module to compile on win32
Resurrecting an old thread from 2012! Finally got back to working on this. I have been stuck in JavaScript land for too long.
Come to find out, on windows, perl does indeed define open to be win32_open and close to be win32_close. This is done in perl/lib/CORE/win3iop.h. So, to get past this problem, I had to modify Xapian.xs to do an #undef of open and close if WIN32 is defined.
Also, I had
2012 Oct 04
1
Synonyms of Abbreviations
Hello,
I am looking for a documentation or an example to use the synonym function.
I tried this
db.add_synonym("omega","xapain");
and this works by adding the flag FLAG_AUTO_SYNONYMS.
If i try to use the
db.add_synonym("omega","xapain is search engine ");
it fails why? Can xapian use synonym for Abbreviations like MBA => Master
of business
2015 Mar 11
2
stub-file and get_doccount
Hello,
i switched from one big index to a stub file with many indexes and running
into a problem.
i have a tool to fetch a random document via:
get_doccount
random id up to get_doccount
get_document with that id
after changing to stub file this failes. Is there a nice way to get a
random document from a stub file?
?MfG?
Felix Ostmann
2005 Sep 12
2
Compiling xapian-bindings-0.9.2 on OpenBSD 3.7
Hello,
Compiling xapian-core-0.9.2 worked fine, and make check reported that the tests ran without problems (although it skipped some near the end). Now I'm trying to compile xapian-bindings-0.9.2 on OpenBSD 3.7 but have run into a problem. After hours of searching the net I haven't found a solution.
For reference gcc -v gives the following output:
Configured with:
Thread model: single