Displaying 15 results from an estimated 15 matches similar to: "Spelling correction confusion"
2010 Jun 07
2
Is there a 64 character term size limit? In Ruby bindings?
I've just found some items in my Xapian database which aren't being
indexed, when the terms are quite long.
Example term:
Frotherham_doncaster_and_south_humber_mental_health_nhs_foundation_trust
It represents that the Freedom of Information request was made to a
particular public body. It results in pages like this not correctly
showing results:
2009 Dec 22
1
Patch submission
Greets,
Please find attached a patch (against current svn) for consideration. It
covers a few missing elements on the Perl side of things:
add_spelling() and test/s.
remove_spelling() and test/s.
get_corrected_query_string() and test/s.
get_spelling_suggestion() and test/s.
man pages for the above and for WritableDatabase::close() are also patched.
Please let me know of any errors (especially
2009 Dec 22
1
test case for (perl) $qp->get_corrected_query_string()
Greetings,
I'm trying to code a test case for get_corrected_query_string() in perl in
t/parser.t, but I'm getting the following error:
Can't locate auto/Search/Xapian/Query/get_correct.al...
I take it something isn't implemented yet?
Here's the code:
ok( $query = $qp->parse_query( 'one or two',
2009 Jul 31
1
what meaning missing value True /False needed
This is my code i don't understand the error message:
library(rgenoud)
rm(list=ls())
set.seed(666)
#########################################################
# As a first step, it is assumed that all input parameters are independent of ageingĀ :
#########################################################
InputDim <-20
# Max number of ageings in the inputs
CPIRate <- rep(0.02 , InputDim )
#
2008 Nov 26
1
Trying to patch xapian perl add/remove_spelling
Greets,
I'm giving a stab at patching the CPAN module to add the missing
WritableDatabase::add_spelling and remove_spelling, but need a bit of
guidance since I'm coming in cold, and pressed for time (aren't we all).
I've modified XS/WritableDatabase.xs and added the two necessary
functions, and also added the two basic tests in t/index.t.
Compilation completes cleanly, but
2001 Jun 02
1
ssh-keygen(1) misinfo: English prose entropy 0.6 - 1.3 b/char!
Quoth manpage:
otherwise easily guessable (English prose has only 1-2 bits of entropy
per word, and provides very bad passphrases). The passphrase can be
Whoever wrote that manpage is either possessed of some
amazing human insight to which I am not privvy, chose a very
non-representative sample of English prose, or is just plain
wrong. I know none of you would ever make such a glaring
error,
2007 May 08
2
Moving a Centos 5 install to another disk
I want to get Centos 5 on my notebook, at minimal risk.
I want to install it on a clean drive, make sure it 'works', the delete
everything but /home (which is on a separate partition) from the Centos
4 drive and copy the Centos 5 over.
Any 'caviats'? I would first tar up the Centos 4 stuff before putting
my foot into it.
To what extent do I need to have the same drive
2006 Feb 28
12
Examples for Money library ?
Can anybody share some examples of their Money implementation ?
I''m trying to setup a Model to use this library, but can''t seem to wrap my
head around how it is exactly supposed to work.
My Model (Foo) looks like:
===============
composed_of :commission, :class_name => "Money", :mapping => [
%w(commission_cents cents), %w(commission_currency currency) ]
Yet, in
2010 Jan 19
1
QueryParser: aliases and OP_AND
Hello,
I'm wondering about how the QueryParser parses a query containing an "alias" when the default operator is OP_AND
(by "alias", I mean a search field mapped to multiple term prefixes).
With the following php code :
<?php
$parser=new XapianQueryParser();
$parser->set_default_op(XapianQuery::OP_AND);
$parser->add_prefix('alias', 'AUT1:');
2004 Sep 16
2
Help with E1 configuration
Hi,
I currently have a E100P card installed on my machine and the E1
subscription will be activated pretty soon. However, I have no idea how to
configure asterisk to make inbound and outbound call using the E1.
Especially for extensions.conf. Below is the configuration I used for
zaptel.conf and zapata.conf. Is it possible if someone can verify if the
configuration for zaptel and zapata is
2006 Jan 24
6
iax provider
Hi
I looking a good IAX service for a *emerging * voip provider.
Better with a test account to try.
Thanks in advance.
roberto
--
Ing. Roberto Pereyra
ContenidosOnline
Servidores BSD, Solaris y Linux
Soporte t?cnico ISPs
Jabber ID: rpereyra@lugmen.org.ar
For reliable and professional DNS, use DNS Made Easy!
http://www.dnsmadeeasy.com/u/14989
-------------- next part
2017 Feb 08
1
searching for " in phrase and other special chars
Hello,
I'm reading xapian-core/docs/queryparser.rst and haven't been
able to find a way to escape " (double-quote) inside quoted
phrases.
Is this possible?
I'm also wondering if searching for other special characters,
such as a literal '*', is possible without triggering a wildcard
match. It would be helpful for some source code searches.
Thanks!
2007 May 23
1
Debian etch packages of php5-xapians have old style flat function interface
I'm running Debian stable (etch) on a server, and have the following Xapian
packages installed.
root@seagrass:/etc/php5/apache# dpkg -l | grep xap
ii libxapian-dev 0.9.9-1 Development files for Xapian search engine l
ii libxapian13 0.9.9-1 Search engine library
ii php4-xapian
2008 Feb 15
2
acts_as_xapian?
Anybody using Xapian with Ruby on Rails?
If so, I'd like:
a) Any advice on the state of the Ruby bindings.
b) Even a skeletal version of acts_as_xapian - I'd be happy to help
flesh it out, and test it.
Francis
2006 Apr 05
1
Comparing against values (e.g. date ranges)
Hi all,
I'm once again looking for search with date ranges. e.g. All entries
before a certain date.
I understand that Omega does this by adding keywords for each year,
month and day number separately and construcing a big OR query
year = 1980 or year = 1981 or year = 1982 .... or (year = 1983 and
(month =1 or month = 2 ...))
I think Olly said he was considering adding something to Xapian,