Hi All,
I m using Jasper report as a report tool.In my application a report has 300
pages. How can i use Lucene to search in .jasper file.
Reg.
Chandrakant S Chouhan
Both sound interesting, but what I want is to be able to generate the
intermediate xml that most enterprise search servers could use to quickly
integrate with them.
e.g.
customer 1 uses retrievalware for enterprise search
customer 2 uses Solr
customer 3 uses yyy.
How do I build our my function
Solr is nice when you can change the existing enterprise applications,
extract content and post xml content to the server. But definately
still a lot of coding.
I would say DBSight is another alternative here. It has similar
architecture as Solr, but it crawls databases by configurable SQLs.
Only
On 5/25/06, Nicholas Van Weerdenburg <[EMAIL PROTECTED]> wrote:
Are there any enterprise search intergration standards (e.g. xml
schema)?
It may or may not be what you are looking for, but there is Solr, a
lucene-based search server with XML/HTTP interfaces. It's primarily
meant to be a standa
On Thursday 25 May 2006 21:08, Crump, Michael wrote:
> Hello,
>
>
>
> I'm working on a search application and I need to know if it is possible
> to get the number of terms that actually matched a Boolean query. For
> example let's say I have field test with values aaa bbb ccc d e f and I
> con
Hello,
I'm working on a search application and I need to know if it is possible
to get the number of terms that actually matched a Boolean query. For
example let's say I have field test with values aaa bbb ccc d e f and I
constructed a Boolean query like this: test:aaa OR test:bbb OR test:e
i
I think I'm missing something here. the whole point of the
ISOLatin1AccentFilter is to replace accented characters with their
unaccented equivalent -- it sounds like that's working just fine, If you
want teh words in teh term vector to contain the accents, why don't you
stop using that filter?
i
: if a query returns 1000 results, the user is interested only in the
: results between 500&550. the way I implemented it is run a normal query
: using IndexSercher.search(Query()) and then get the specified documents
: out of the hits object. I am wondering if there is a more efficient way
: than
My own solution until I have another one better, I use FuzzyQuery for every
term in the phrase.
For example "My work is the worst" ->> My~ work~ is~ the~ worst
What do you think about this uggly solution? I don't have anything more
ideas.
2006/5/24, Dan Wiggin <[EMAIL PROTECTED]>:
I need some f
Hi,
I am planning to integrate Lucene into our application. However, I also
want to support the general enterprise search market and what our
customers have installed.
Ideally, we would develop:
1. generic search support services
a. index records into logical "documen
On Donnerstag 25 Mai 2006 17:48, Erik Hatcher wrote:
> "t" is a stop word because words like "don't" get analyzed into [don]
> [t].
Maybe it should, but it doesn't it seems: don't gets parsed as field:don't
using StandardAnalyzer and QueryParser. Mhh, maybe this is because people
use differen
On May 25, 2006, at 11:01 AM, Daniel Naber wrote:
On Donnerstag 25 Mai 2006 16:18, [EMAIL PROTECTED] wrote:
When we search (using QueryParser) for the phrase "t-
mobile" (including
quotes)
t-mobile becomes "t mobile", but "t" is a stopword by default. Why?
Maybe
the person who added it
On Donnerstag 25 Mai 2006 16:18, [EMAIL PROTECTED] wrote:
> When we search (using QueryParser) for the phrase "t-mobile" (including
> quotes)
t-mobile becomes "t mobile", but "t" is a stopword by default. Why? Maybe
the person who added it has a dislike for German Telekom :-) But
seriously, you
Hi all,
I need to be able to get specific documents out of the returned documents
without the need to retrieve all the other documents.
just to describe my case, the user is allowed to specify in the queryString the
page number and number of results to return. for example if a query returns
100
It appears that I was confused about the way analyzers are working. I
assumed that a typical analyzer would just remove hyphens and treat the
phrase as a space. We're just using StandardAnalyzer.
When we search (using QueryParser) for the phrase "t-mobile" (including
quotes) we're getting results
After some more research, it seems that one of the bottlenecks is
Spans.next(), can I drop anything out in order to improve performance?
Most of the queries are SpanNearQuery with SpanOrQuery as its clauses.
Any help would be much appreciated.
Regards,
Michael
On 5/25/06, Michael Chan <[EMAIL
Did anyone write some neat tool for statistical analysis of hits over
time? I need one. And it must be fast. Was thinking something like this:
List timeFrames;
class TimeFrame {
Date from;
Date to;
void add(Hits hits) {
int score = 10;
for (int d = 0; score<0 && d
17 matches
Mail list logo