Tagged Questions
The full-text-indexing tag has no wiki summary.
24
votes
6answers
4k views
Lucene.Net Best Practices
What are the best practices in using Lucene.Net? or where can I find a good lucene.net usage sample?
9
votes
4answers
311 views
Oracle: Full text search with condition
I've created an Oracle Text index like the following:
create index my_idx on my_table (text) indextype is ctxsys.context;
And I can then do the following:
select * from my_table where ...
8
votes
2answers
1k views
Elastic search as a database?
I have stumbled upon Elastic search which seems to be a very nice full text search engine. It is schema less, distributed, using JSON and RESTful API just like CouchDB.
You can add records and ...
7
votes
2answers
247 views
How should I do full-text searching on App Engine?
What should I do for fast, full-text searching on App Engine with as little work as possible (and as little Java — I’m doing Python.)?
7
votes
4answers
2k views
What is the best Java text indexing library for Google App Engine?
To the moment I know that compass may handle this work. But indexing with compass looks pretty expensive. Is there any lighter alternatives?
7
votes
3answers
2k views
Faster search in Lucene - Is there a way to keep the whole index in RAM?
Is there a way of keeping the index in RAM instead of keeping it on the hard disk?
We want to make searching faster.
6
votes
4answers
329 views
Adding more OR searches with CONTAINS Brings Query to Crawl
I have a simple query that relies on two full-text indexed tables, but it runs extremely slow when I have the CONTAINS combined with any additional OR search. As seen in the execution plan, the two ...
5
votes
3answers
435 views
strpos() with multiple needles?
I am looking for a function like strpos() with two significant differences:
To be able to accept multiple needles. I mean thousands of needles at ones.
To search for all occurrences of the needles ...
4
votes
2answers
48 views
Not indexing parts of HTML
Is there any method for limiting the indexing of HTML to increase the page content relevancy? E.g. excluding menus, etc. from robots. I remember seeing some special tags for this long time ago, but I ...
4
votes
1answer
1k views
Speed up Oracle Text indexing or let the indexer work only on low load times
We're using a Oracle Text CTXSYS.CONTEXT index to index about half a million rows containing metainformation. The information is spread over two tables that are combined by a procedure that the ...
3
votes
5answers
145 views
Determining the Similarity Between Items in a Database
We have a database with hundreds of millions of records of log data. We're attempting to 'group' this log data as being likely to be of the same nature as other entries in the log database. For ...
3
votes
3answers
47 views
Performing searches against large dictionaries using php
Currently I am trying to perform text searches against large dictionaries using php or mysql. Until now I haven't found the best way to do that. For example there is a Text:Scan module written in Perl ...
3
votes
2answers
171 views
Use of indexes for multi-word queries in full-text search (e.g. web search)
I understand that a fundamental aspect of full-text search is the use of inverted indexes. So, with an inverted index a one-word query becomes trivial to answer. Assuming the index is structured like ...
3
votes
1answer
219 views
is it possible to use negative query boost in lucene?
I want to penalize some terms in query, not to ignore them at all so "MUST NOT" operator will not work?
Is it possible to use negative query boost with SHOULD in boolean query in lucene, how does it ...
3
votes
1answer
376 views
Slow MySQL full text search
I'm using this query to perform a full text search on a MySQL database:
SELECT DISTINCT
questions.id,
questions.uniquecode,
questions.spam,
questions.questiondate,
questions.userid,
...
3
votes
3answers
639 views
How to setup Lucene/Solr for a B2B web app?
Given:
1 database per client (business customer)
5000 clients
Clients have between 2 to 2000 users (avg is ~100 users/client)
100k to 10 million records per database
Users need to search those ...
3
votes
1answer
46 views
What should the itemcount property in SQL Server match
If the itemcount property does not exactly match the number of indexed rows is that a problem? Is there a numerical way I can ensure that I have a complete full-text-index?
update: the property ...
3
votes
3answers
742 views
How to identify if a Lucene.Net Index exists in a folder
I am using Lucene.Net for indexing and searching documents, and I am using the following code to create or open an index if one exists:
IndexWriter writer = new IndexWriter(@"C:\index", new ...
2
votes
1answer
89 views
Enable Full-Text Search on View with Inner Join
I'm running Sql Server 2008 R2 and I need to enable Full-Text search on a view with a inner join. My problem is that I don't know how to create my Full-Text Index.
When I use the Full-Text Indexing ...
2
votes
1answer
54 views
SQL Server Full Text not taking Leading Zeros into account
I have an SQL Server 2008 Database with a Full Text Index set to one table column used for search.
When trying to perform a query against the table using the CONTAINS clause with the following ...
2
votes
3answers
112 views
how does lucene calculate intersection of documents so fast?
What are the internals of storage and search that allow this? As in the nitty gritties?
For example, I have a million documents matched by a term and a million others matched by a second term of an ...
2
votes
3answers
326 views
Should I use Lucene.Net for full text search with SQL Compact Edition 4, or is there a better option?
I'm trying to create a full text search facility for a small blog which is running against a SQL Compact Edition 4 database.
There seems to be almost no information out there about this (though I'd ...
2
votes
1answer
198 views
django-haystack: choosing a large SearchIndex over an Indexed DB
I have a UserProfile Model with 35 fields (Char,Int,Bool,Dec,M2M,FK). As part of the search view functionality, one of the fields requires full-text searching while the remaining 34 fields will be ...
2
votes
1answer
253 views
SQL Server 2008 Repopulate Index “Update” Option
I have created a single catalog named EntryCatalog. I assigned a table named Entry to the catalog and selected Notes and Title columns (both nvarchar max) with Track Changes set to Automatic.
I did ...
2
votes
1answer
124 views
mysql match/against
I'm using this search
-> match (c1, c2) against (">dg*" in boolean mode);
and I get this list
1 dgas
2 dgica
3 dgicb
4 dgii
5 dgit
6 dgly
7 dgc
8 dgse
which seems ...
2
votes
2answers
203 views
Indexing text - MySQL vs. MS SQL
image you have application like this : 1 DB table, few int fields, few small varchar fields, and about 10 TEXT fields (contents variable - some data about 50 chars long, most about 100-200, some about ...
2
votes
0answers
69 views
Full Text indexing Multiple languages
My DB stores content in three languages (English,French & Arabic) I have full text indexing enabled for few tables and would like to know few best practices:
1. When show I us language neutral ...
2
votes
5answers
441 views
Tell me SQL Server Full-Text searcher is crazy, not me
i have some customers with a particular address that the user is searching for:
123 generic way
There are 5 rows in the database that match:
ResidentialAddress1
=============================
...
2
votes
1answer
847 views
SQL Server Fulltext search yields no results
I have SQL Server 2005 Express Edition with Advanced Services. I enabled FullText and created a catalog as follows:
create FullText catalog MyDatabase_FT in path 'mypath' as default
I then created ...
2
votes
5answers
2k views
Save a binary file in SQL Server as BLOB and text (or get the text from Full-Text index)
Currently we are saving files (PDF, DOC) into the database as BLOB fields. I would like to be able to retrieve the raw text of the file to be able to manipulate it for hit-highlighting and other ...
2
votes
1answer
339 views
List which columns have a full-text index in SQL Server 2005
How do I list all tables / columns in my database that have a full-text index?
2
votes
2answers
296 views
Full-text Indexing for a view with multiple databases
Can MS SQL support full-text indexing for a view that connects (joins or unions) multiple databases?
1
vote
1answer
12 views
creating a lucene index to find parent based on data of children
I am trying to understand how to build a lucene index for data that has a 1 to many relation.
suppose I have a table for families with id and family name
and a table of people with id, first name, ...
1
vote
1answer
54 views
NoSQL: indexing and keyword-based searching
I have an application that stores items (e.g. web documents). Each item can feature a arbitrary large set of tags. And typical a common query is to retrieve all documents with given set of tags. Well, ...
1
vote
1answer
41 views
MySQL Full Text Search Not Matching
My MySQL table is not returning results with a MATCH (col) AGAINST ('') query.
The table is simple:
id | url | fullTextIndex
And my query is
SELECT *, Match(fullTextIndex) AGAINST ...
1
vote
2answers
58 views
What is a good choice for Fulltext indexing when developing a OSX application?
Hy,
I'm implementing an IMAP client as a Mac OSX application using MacRuby.
For the sake of offline availability, I wanted to allow fulltext indexing and attribute based indexing of all messages. ...
1
vote
0answers
87 views
FullText INDEXING on MyISAM is really slow
I have a table
CREATE TABLE `dataFullText` (
`id` int(11) NOT NULL,
`title` char(255) NOT NULL,
`description` text NOT NULL,
`name` char(100) NOT NULL,
`ref` char(50) NOT NULL,
PRIMARY KEY (`id`),
...
1
vote
2answers
101 views
Full text search solutions for Java?
There's a large set of entities of different kinds:
interface Entity {
}
interface Entity1 extends Entity {
String field1();
String field2();
}
interface Entity2 extends Entity {
String ...
1
vote
0answers
95 views
When does MySQL rebuild a FTS index?
If you want to use the MySQL Full Text Search functionality you define a Full Text Index on field(s) with type VARCHAR. As rows are INSERTed and UPDATEd, mysql has to keep the indexes up-to-date. My ...
1
vote
2answers
146 views
Build an index for substring search?
I want to do general substring search among billions of strings. The requirement is a little different from general fulltext search because I want a query "ubst" also can hit "substr".
Is Lucene or ...
1
vote
0answers
77 views
Sphinx and CLucene like indexing/searching engine?
Are there any other indexing/searching engine like sphinx and Clucene?
I would like to split my document into several parts and index each part individually for later look-up.
any lighter (scalable) ...
1
vote
1answer
79 views
Why is my SQL query trying to convert an nvarchar value to int? (using CONTAINSTABLE())
I am trying to get the FullText Search working in SQL Server 2008 R2. I have been working with our admin and we believe we have a catalog with indexes successfully set up. Now, I'm trying to query the ...
1
vote
2answers
164 views
lucene *.cfs numbers growth
After every update of index in lucene *.cfs file number growth _2.cfs, _5.cfs, _7.cfs.
Every time. Is it ok or maybe I forgot to close some objects in code or else?
1
vote
0answers
84 views
Apache Lucene to search for Releveant RSS feeds based on Keywords given by the user
I am building an rss reader, i want to include search feature in it.
Suppose, if user gives the key-words like "CMU MS application" then all the RSS feeds on the web speaking about CMU MS have to be ...
1
vote
1answer
190 views
Best practices for index/fulltext when using WHERE/LIKE
Should I set the columns to in my table as index or fulltext? They will be searched for both using WHERE and WHERE .. LIKE.
Which is best?
1
vote
4answers
420 views
Best data store w/full text search for lots of small documents? (e.g. a Splunk-like system)
We are specing out a system that will index and store zillions of Syslog messages. These are text messages, with a few attributes (system name, date/time, message type, message body), that are ...
1
vote
1answer
75 views
Lucene: output elaborated data by adding IR information to it
I need to process a database in order to add meta-information such as td-idf weights to the documents terms.
Successively I need to create document pairs with similarity measures such as td-idf ...
1
vote
1answer
128 views
Indri Lemur: issue with the make file
I want to compile my indri lemur application, so i've created a folder with myapp.cpp and copied Makefile.app.in from the indri root directory to myApp/Makefile.app as explained here: Write your own ...
1
vote
1answer
195 views
How to install a pdf iFilter in SQL Server 2000?
I have a database with binary objects that contain documents. A separate column contains the extension (doc, docx, xls, html, txt, ...). I have set up full text indexing and this has worked for years: ...
1
vote
1answer
93 views
Exclude file type from fulltext index
I have a fulltext index created on a varbinary(max) filestream column. I have both PDF's and XML's being stored in this filestream, and consequently both are being indexed. However, I really don't ...