Author: ehatcher
Date: Fri Feb 11 10:07:20 2005
New Revision: 153427
URL: http://svn.apache.org/viewcvs?view=rev&rev=153427
Log:
Remove SearchBean - it has been deprecated by the sorting feature in Lucene 1.4
Removed:
lucene/java/trunk/sandbox/contributions/search
Is the SearchBean code in the Sandbox still useful now that we have
sorting in Lucene 1.4? If so, what does it offer that the core does
not provide now?
i just checked the lucene repository. The only reference to SearchBean i
found, is it's own package "sandbox/contributions/sear
I never used SearchBean myself, but I believe people used it just for
sorting before Tim Jones added sorting to the core. I haven't heard
anyone asking any SearchBean question since then, so I think it can
go...
Otis
--- Erik Hatcher <[EMAIL PROTECTED]> wrote:
> Is the SearchBe
Is the SearchBean code in the Sandbox still useful now that we have
sorting in Lucene 1.4? If so, what does it offer that the core does
not provide now?
As I'm cleaning up the sandbox and migrating it to a "contrib" area,
I'm evaluating the pieces and making sure it makes
ehatcher2004/01/23 08:51:56
Modified:contributions/searchbean/src/java/org/apache/lucene/beans
CompareDocumentsByField.java SearchBean.java
SortedField.java
contributions/searchbean/src/test/org/apache/lucene
ehatcher2004/01/05 17:24:05
Modified:contributions/searchbean build.xml
Removed: contributions/searchbean default.properties
Log:
unify searchbean build
Revision ChangesPath
1.5 +5 -382jakarta-lucene-sandbox/contributions/searchbean/build.xml
Index
What I believe SearchBean does is create a complete replica only of the
contents of each field (not the entire document) that is to be used as the
sort key (typically only one field, such as a date field).
Regards,
Terry
- Original Message -
From: "Barry Kaplan" <[EMAIL P
gzilla/show_bug.cgi?id=16245
SearchBean build broken
Summary: SearchBean build broken
Product: Lucene
Version: unspecified
Platform: Other
OS/Version: Other
Status: NEW
Severity: Normal
Priority: Other
Component:
Thanks Erik,
I'll check into it.
--Peter
On Sunday, December 15, 2002, at 03:17 AM, Erik Hatcher wrote:
After upgrading to the latest CVS codebase of Lucene, I'm now trying
to take advantage of the nice SearchBean in the sandbox contributions
area.
I'm getting thi
After upgrading to the latest CVS codebase of Lucene, I'm now trying to
take advantage of the nice SearchBean in the sandbox contributions area.
I'm getting this compile error:
compile:
[javac] Compiling 6 source files to
/Users/erik/dev/jakarta/jakarta-lucene-sandbox/con
unsubscribe
-Ursprüngliche Nachricht-
Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Gesendet: Samstag, 7. September 2002 03:01
An: [EMAIL PROTECTED]
Betreff: cvs commit:
jakarta-lucene-sandbox/contributions/searchbean/src/test/org/apache/luce
ne TestSearchBean.java
carlson 2002
carlson 2002/09/06 18:00:57
Modified:contributions/searchbean/src/java/org/apache/lucene/beans
SortedField.java
Log:
I have modified the SortedField to not access deleted documents. This caused an
exception when filling the initial arrays.
Revision
carlson 2002/09/06 18:01:01
Modified:contributions/searchbean/src/test/org/apache/lucene
TestSearchBean.java
Log:
I added the Unit Test to include a test on an unoptimized index.
Revision ChangesPath
1.2 +36 -11
jakarta-lucene-sandbox
carlson 2002/09/06 18:00:52
Modified:contributions/searchbean/src/java/org/apache/lucene/beans
SearchBean.java
Log:
I added a static field for the default search Field.
I have added a
SearchBean.close() to people can close the searcher.
Revision
carlson 2002/09/06 18:00:47
Modified:contributions/searchbean/src/java/org/apache/lucene/beans
HitsIterator.java
Log:
Now if there are no hits, I return a HitsIterator that will return 0 for all
appropriate fields instead of returning null
I put the string
kelvint 2002/08/30 18:19:43
Added: contributions/searchbean/src/java/org/apache/lucene/beans
IteratorAdapter.java
Log:
Although HitsIterator doesn't implement Iterator, it follows the Iterator idiom so
this is just a simple adapter
(really more
You have to add a get method to make the field public. Sorry for the
confusion.
This is done in the nightly builds.
I hope this helps
--Peter
On 7/17/02 12:11 PM, "Jonathan Pace" <[EMAIL PROTECTED]> wrote:
> I must have missed the boat. I am trying to implement the S
I believe you have to get the CVS version of Lucene for that to
compile.
--- Jonathan Pace <[EMAIL PROTECTED]> wrote:
> I must have missed the boat. I am trying to implement the
> SearchBean, but
> it chokes on the HitsIterator compile saying that there is no method
> id(
I must have missed the boat. I am trying to implement the SearchBean, but
it chokes on the HitsIterator compile saying that there is no method id(int)
in the Hits class. I found the post that said to make the id field public.
Is that the id field in the HitDoc innerclass? I don't see t
I must have missed the boat. I am trying to implement the SearchBean, but
it chokes on the HitsIterator compile saying that there is no method id(int)
in the Hits class. I found the post that said to make the id field public.
Is that the id field in the HitDoc innerclass? I don't see t
Hi,
It looks like people are starting to use the SearchBean and I would like to
get some thoughts on the scope its functionality.
My thought is that the SearchBean should be what most people will use if
they just want to set a configuration file for basic features. These basic
features would
I already sent out an email about the SearchBean, but I guess I didn't
actually submit the source.
I have finished submitting it.
Here is a repost of the initial note.
I have started to convert my very quick and dirty SearchBean to a more
useful and generic bean.
It's designed
carlson 02/05/22 17:45:09
Added: contributions/searchbean/src/java/org/apache/lucene/beans
SortedField.java
Log:
Initial submit of SerachBean and related classes
Revision ChangesPath
1.1
jakarta-lucene-sandbox/contributions
carlson 02/05/22 17:45:04
Added: contributions/searchbean/src/java/org/apache/lucene/beans
SearchBean.java
Log:
Initial submit of SerachBean and related classes
Revision ChangesPath
1.1
jakarta-lucene-sandbox/contributions
carlson 02/05/22 17:45:00
Added: contributions/searchbean/src/java/org/apache/lucene/beans
IndividualHit.java
Log:
Initial submit of SerachBean and related classes
Revision ChangesPath
1.1
jakarta-lucene-sandbox/contributions
carlson 02/05/22 17:44:57
Added: contributions/searchbean/src/java/org/apache/lucene/beans
HitsIterator.java
Log:
Initial submit of SerachBean and related classes
Revision ChangesPath
1.1
jakarta-lucene-sandbox/contributions
carlson 02/05/22 17:44:53
Added: contributions/searchbean/src/java/org/apache/lucene/beans
CompareDocumentsByField.java
Log:
Initial submit of SerachBean and related classes
Revision ChangesPath
1.1
jakarta-lucene-sandbox
carlson 02/05/22 17:44:49
Added: contributions/searchbean default.properties
Log:
Initial submit of SerachBean and related classes
Revision ChangesPath
1.1
jakarta-lucene-sandbox/contributions/searchbean/default.properties
Index
carlson 02/05/22 17:44:44
Added: contributions/searchbean build.xml
Log:
Initial submit of SerachBean and related classes
Revision ChangesPath
1.1 jakarta-lucene-sandbox/contributions/searchbean/build.xml
Index: build.xml
I have started to convert my very quick and dirty SearchBean to a more
useful and generic bean.
It's designed to be used with a JSP page (or other presentation environment)
and wrap many of the common Lucene functions.
It supports:
1) Paging
2) Iterating through the search resu
carlson 02/05/20 23:29:07
Added: contributions/searchbean/src/test/org/apache/lucene
TestSearchBean.java
Log:
First submittal of SearchBean, a bean that wraps many of the Lucene functionality to
perform searches.
It supports:
1) Paging
2) Iterating
carlson 02/05/20 23:25:52
jakarta-lucene-sandbox/contributions/searchbean/src/test/org/apache/lucene - New
directory
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
carlson 02/05/20 23:25:46
jakarta-lucene-sandbox/contributions/searchbean/src/test/org/apache - New directory
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
carlson 02/05/20 23:25:40
jakarta-lucene-sandbox/contributions/searchbean/src/test/org - New directory
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
carlson 02/05/20 23:25:33
jakarta-lucene-sandbox/contributions/searchbean/src/test - New directory
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
carlson 02/05/20 23:25:15
jakarta-lucene-sandbox/contributions/searchbean/src/java/org/apache/lucene/servlet -
New directory
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
carlson 02/05/20 23:24:26
jakarta-lucene-sandbox/contributions/searchbean/src/java/org/apache/lucene/beans -
New directory
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
carlson 02/05/20 23:24:20
jakarta-lucene-sandbox/contributions/searchbean/src/java/org/apache/lucene - New
directory
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
carlson 02/05/20 23:24:14
jakarta-lucene-sandbox/contributions/searchbean/src/java/org/apache - New directory
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
carlson 02/05/20 23:24:08
jakarta-lucene-sandbox/contributions/searchbean/src/java/org - New directory
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
carlson 02/05/20 23:24:01
jakarta-lucene-sandbox/contributions/searchbean/src/java - New directory
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
carlson 02/05/20 23:23:53
jakarta-lucene-sandbox/contributions/searchbean/src - New directory
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
carlson 02/05/20 23:13:29
jakarta-lucene-sandbox/contributions/searchbean - New directory
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
43 matches
Mail list logo