-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Zend Lucene and Java Lucene are built in PHP and java repectively, and PHP language has a higher level than java.
Just wondering How big the performance difference among these two, regarding to index building and data searching?
Is it much more effective to let java create and rebuild index, and…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I've read some Jira entries and they mentioned moving fast-vector-highlighter to core about a year ago but it never made it.
Looking at the svn for contrib it seems incomplete.
There are no tests for FastVectorHighlighter
Documentation is lacking
No samples anywhere on apache.org
Anyone have…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am trying to install Pylucene (pylucene-3.3-3-src.tar.gz) on my ubuntu linux 11.10.
I have python 2.7.2. I was able to compile JCC (I think) because I didnt see any error when I installed it. When I tried to install Pylucene I get the following error. Can someone help? Thanks.
ICU not installed
/usr/bin/python…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am trying to get the Highlighter class from Lucene to work properly with tokens coming from Solr's WordDelimiterFilter. It works 90% of the time, but if the matching text contains a ',' such as "1,500" the output is incorrect:
Expected: 'test 1,500 this'
Observed: 'test 11,500 this'
I…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
How to handle this error in lucene:
java.lang.AbstractMethodError: org.apache.lucene.store.Directory.listAll()[Ljava/lang/String;
at org.apache.lucene.index.SegmentInfos$FindSegmentsFile.run(SegmentInfos.java:568)
at org.apache.lucene.index.DirectoryReader.open(DirectoryReader.java:69)
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi, I am using hibernate search for my application. It is well configured and running perfectly till some time back, when it stopped working suddenly.
The reason according to me being the number of my model (bean) classes.
I have some 90 classes, which I add to my configuration, while building my…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am trying to do a search with some criteria
FullTextQuery fullTextQuery = fullTextSession.createFullTextQuery(finalQuery, KnowledgeBaseSolution.class).setCriteriaQuery(criteria);
and then page it
//Gives me around 700 results
result.setResultCount(fullTextQuery.getResultSize());
//Some pages…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
@Entity
@Table(name = "USERS")
public class User {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private long id;
@Column(name = "USERNAME", nullable = false, length = 20)
private String userName;
@Column(name = "PASSWORD", nullable = false, length = 10)
private String password;
@Column(name…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hello,
I'm using Hibernate Search (which uses Lucene) for searching some Data I have indexed in a directory. It works fine but I need to do a reverse search. By reverse search I mean that I have a list of queries stored in my database I need to check which one of these queries match with a Data…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Has anyone experience with custom Lucene sharding / paritioning using Hibernate Search?
The documentation of Hibernate Search says the following about Lucene Sharding :
In some cases, it is necessary to
split (shard) the indexing data of a
given entity type into several Lucene
indexes.…
>>> More