Tagged Questions

Full text search involves searching document corpora, usually involving unstructured text, as opposed to searching text fields in a structured database. Full text search capabilities often include ranking of results by relevance, similarity matching, boolean queries, text clustering, and more.

learn more… | top users | synonyms (2)

86
votes
6answers
25k views

Comparison of full text search engine - Lucene, Sphinx, Postgresql, MySQL?

I'm building a Django site and I am looking for a search engine. A few candidates: Lucene/Lucene with Compass/Solr Sphinx Postgresql built-in full text search MySQl built-in full text search ...
51
votes
6answers
14k views

Choosing a stand-alone full-text search server: Sphinx or SOLR?

I'm looking for a stand-alone full-text search server with the following properties: Must operate as a stand-alone server that can serve search requests from multiple clients Must be able to do ...
32
votes
11answers
8k views

Searching subversion history (full text)

Is there a way to perform a full text search of a subversion repository, including all the history? For example, I've written a feature that I used somewhere, but then it wasn't needed, so I svn rm'd ...
26
votes
6answers
14k views

Fulltext Search with InnoDB

I'm developing a high-volume web application, where part of it is a MySQL database of discussion posts that will need to grow to 20M+ rows, smoothly. I was originally planning on using MyISAM for the ...
26
votes
2answers
2k views

Optimal data architecture for tagging, clouds, and searching (like StackOverflow)?

I'd love to know how Stack Overflow's tagging and search is architected, because it seems to work pretty well. What is a good database/search model if I want to do all of the following: Storing ...
25
votes
5answers
3k views

How to evaluate hosted full text search solutions?

What are the options when it comes to SaaS/hosted full text search? How should I evaluate the different options available? I'm looking for something that uses Lucene, solr, or sphinx on the backend, ...
24
votes
8answers
6k views

Rails 3 full-text search options (gems, plugins, etc)

I was wondering if there were any suggestions for how to best roll with full text searching in your Rails 3 apps? Thinking Sphinx and acts_as_ferret aren't updated for Rails 3 yet, and even basic ...
20
votes
7answers
2k views

Search engine solution for Django that actually works?

The story so far: Decided to go with Xapian as search backend because it has all search-engine features I was looking for, knows about Unicode, stemming, has few dependencies and requires no bloated ...
19
votes
6answers
6k views

SQL Server 2008 Full Text Search (FTS) versus Lucene.NET

I know there have been questions in the past about SQL 2005 versus Lucene.NET but since 2008 came out and they made a lot of changes to it and was wondering if anyone can give me pros/cons (or link to ...
17
votes
2answers
6k views

7645 Null or empty full-text predicate

I have a query that ran fine on SQL2005 but moving the database to SQL2008 gives me the error from the title. The code that is the problem is a call to CONTAINS, CONTAINSTABLE or FREETEXT with an ...
16
votes
6answers
6k views

Full Text Searching with Rails

I've been looking into searching plugins/gems for Rails. Most of the articles compare Ferret (Lucene) to Ultrasphinx or possibly Thinking Sphinx, but none that talk about SearchLogic. Does anyone ...
15
votes
12answers
2k views

search 25 000 words within a text

I need to find occurrences of ~ 25 000 words within a text. What is the most suitable algorithm/library for this purpose? target language is C++
14
votes
4answers
562 views

.NET library for text algorithms?

Do you know any .NET library for text algorithms?? Especially I'm interested in strings match, and full-text-search algorithms like Bitap algorithm Levenshtein distance Damerau–Levenshtein distance ...
14
votes
8answers
4k views

Is there a pure Python Lucene?

The ruby folks have Ferret. Someone know of any similar initiative for Python? We're using PyLucene at current, but I'd like to investigate moving to pure Python searching.
13
votes
2answers
899 views

Word break in languages without spaces between words (e.g., Asian)?

I'd like to make MySQL full text search work with Japanese and Chinese text, as well as any other language. The problem is that these languages and probably others do not normally have white space ...
13
votes
3answers
11k views

Does Oracle support full text search?

Is there an Oracle equivalent to MS SQL's full text search service? If so, has anyone implemented it and had good / bad experiences?
12
votes
7answers
728 views

Fastest way to find string by substring in SQL?

I have huge table with 2 columns: Id and Title. Id is bigint and I'm free to choose type of Title column: varchar, char, text, whatever. Column Title contains random text strings like "abcdefg", "q", ...
12
votes
1answer
295 views

Problem in implementing Sphinx API along with Cake php

I am working on project where I need to implement SphinxSearch with Cake php. So I am simply trying to use a component and behaviour into it. The link to it, is :- ...
12
votes
3answers
3k views

What is Full Text Search vs LIKE

I just read a post mentioning "full text search" in SQL. I was just wondering what the difference between FTS and LIKE are. I did read a couple of articles but couldn't find anything that ...
11
votes
1answer
307 views

Suggestions for Querying Database for Names

I have an Oracle database that, like many, has a table containing biographical information. On which, I would like to search by name in a "natural" way. The table has forename and surname fields and, ...
10
votes
5answers
370 views

Full Text Search primer?

Can anybody recommend a good book(s)/paper(s)/article(s) on Full Text Search (and maybe indexing in general). I'm pretty anal about having to understand what's happening behind the scenes in my ...
10
votes
14answers
2k views

Full text search with embedded DB in Delphi

We are creating an open source Twitter client and are looking for an embedded DB with the smallest footprint possible that works with Delphi and that lends itself well to full text search (I know that ...
9
votes
1answer
122 views

How can a query with a TOP 10 take infinitely more time to complete than the same query without the TOP 10?

I have a very simple situation: I have a Table Valued Function called FullTextPagina defined as follows: select * from Pagina as p where contains(p.PageText, @term) And then I have 2 queries: ...
9
votes
4answers
6k views

Full-text search on App Engine with Whoosh

I need to do full text searching with Google App Engine. I found the project Whoosh and it works really well, as long as I use the App Engine Development Environement... When I upload my application ...
9
votes
5answers
3k views

Best full text search for mysql?

We're currently running MySQL on a LAMP stack and have been looking at implementing a more thorough, full-text search on our site. We've looked at MySQL's own freetext search, but it doesn't seem to ...
9
votes
2answers
4k views

How do you do full text search (FTS) with Linq to ADO.NET entity framework?

Now that SQL Server 2008 has full text search built in. I'm looking to use it to power my website's search. I'm also looking at using ADO.NET entity framework for my ORM but I was wondering how do you ...
9
votes
5answers
1k views

How hard is it to incorporate full text search with SQL Server?

I am building a C#/ASP.NET app with an SQL backend. I am on deadline and finishing up my pages, out of left field one of my designers incorporated a full text search on one of my pages. My "searches" ...
9
votes
2answers
1k views

Can someone give me a high overview of how lucene.net works?

I have an MS SQL database and have a varchar field that I would like to do queries like where name like '%searchTerm%'. But right now it is too slow, even with sql enterprise's full text indexing. ...
9
votes
3answers
992 views

In-house full-text search engine for source code and SQL scripts

I like to run search engine on code, and if you aren't I recommend it (especially if you code in a team and you don't have all the lines of code in your head). When I vaguely remember some variable ...
9
votes
12answers
4k views

What are some Search Servers out there?

I'm looking to find alternatives to Solr from the Apache Software Foundation. For those that don't know, Solr is an enterprise search server. A client application uses a web-services like interface ...
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 ...
8
votes
6answers
370 views

Full text searching XML data with Python: best practices, pros & cons

Task I want to use Python for doing full text searches of XML data. Example data <elements> <elem id="1">some element</elem> <elem id="2">some other element</elem> ...
8
votes
5answers
3k views

How to search contents of multiple pdf files?

Ho could I search the contents of pdf files in a directory/subdirectory. Looking for some command line tools. It seems grep cant search pdf files.
8
votes
4answers
1k views

Create and use HTML full text search index (C++)

I need to create a search index for a collection of HTML pages. I have no experience in implementing a search index at all, so any general information how to build one, what information to store, ...
8
votes
1answer
2k views

Sphinx PHP search

I'm doing a Sphinx search but turning up some really weird results. Any help is appreciated. So for example if I type "50", I get: 50 Cent 50 Lions 50 Foot Wave, etc. This is great, but when I ...
8
votes
4answers
873 views

Concerns about SQL Server 2008 Full Text Search

I have built a T-SQL query like this: DECLARE @search nvarchar(1000) = 'FORMSOF(INFLECTIONAL,hills) AND FORMSOF(INFLECTIONAL,print) AND FORMSOF(INFLECTIONAL,emergency)' SELECT * FROM Tickets WHERE ...
8
votes
7answers
871 views

Stackoverflow Related questions algorithm

The related questions that appear after entering the title, and those that are in the right side bar when viewing a question seem to suggest very apt questions. Stackoverflow only does a SQL search ...
8
votes
8answers
8k views

Full Text Search in Linq

There's no full text search built into Linq and there don't seem to be many posts on the subject so I had a play around and came up with this method for my utlity class: public static ...
8
votes
8answers
4k views

SQL full text search vs “LIKE”

Let's say I have a fairly simple app that lets users store information on DVDs they own (title, actors, year, description, etc.) and I want to allow users to search their collection by any of these ...
8
votes
6answers
785 views

Fast Text Search Over Logs

Here's the problem I'm having, I've got a set of logs that can grow fairly quickly. They're split into individual files every day, and the files can easily grow up to a gig in size. To help keep the ...
8
votes
4answers
1k views

How do I compare phrases for similarity?

When entering a question, stackoverflow presents you with a list of questions that it thinks likely to cover the same topic. I have seen similar features on other sites or in other programs, too (Help ...
8
votes
7answers
3k views

How do I do full-text searching in Ruby on Rails?

I would like to do full-text searching of data in my Ruby on Rails application. What options exist?
7
votes
3answers
675 views

Optimizing mysql fulltext search

I want to make a search with fulltext in my web. I need the search with a pagination. my database have 50,000+ rows/per table. I have alter my table and make (title,content,date) to be index. the ...
7
votes
9answers
2k views

Full-text search in NoSQL databases

Has anyone here have any experience deploying a real online system that had a full text search in any of the NoSQL databases? For example, how does the full-text search compare in MongoDB, Riak and ...
7
votes
7answers
516 views

Function that returns affinity between texts?

consider I have a string1 = "hello hi goodmorning evening [...]" and I have some minor keywords compare1 = "hello evening" compare2 = "hello hi" I need a function that returns the affinity ...
7
votes
1answer
447 views

SQL Server vs MySQL: CONTAINS(*,'FORMSOF(THESAURUS,word)')

I am shocked. I spent past 3-4 days figuring out how I could implement stemming (and synonyms searches) in mysql when I see in SQL Server the query is incredibly easly: Select * from tab where ...
7
votes
5answers
542 views

Efficient algorithm for finding all keywords in a text

I have lots of strings containing text in lots of different spellings. I am tokenizing these strings by searching for keywords and if a keyword is found I use an assoicated text for that keyword. ...
7
votes
2answers
246 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
1answer
1k views

Using Full-Text-Search in order to find partial words (SQL Server 2008)

I'm trying to build a facebook like search for my software. I'd like to query the table customers. I've set up a FULLTEXT Index and tried the next query SELECT * FROM Customer where ...
7
votes
2answers
1k views

Why are PostgreSQL Text-Search GiST indexes so much slower than GIN indexes?

I'm testing out the PostgreSQL Text-Search features, using the September data dump from StackOverflow as sample data. :-) The naive approach of using LIKE predicates or POSIX regular expression ...

1 2 3 4 5 38