Full text search involves searching documents, usually involving unstructured text, as opposed to searching text fields in a structured database.

learn more… | top users | synonyms (3)

0
votes
2answers
5 views

Mysql Full Text Index combining phrase and wild card

When using the mysql full text index search is it possible to combine both the phrase and wild card search. Example: In the database we have the following location name "Sydney Harbour". We want to ...
0
votes
0answers
7 views

MySQL Full text search extremely slow on a AWS RDS large instance

I have a table having 14 million rows and i am trying to perform a full text search on this table. The query for this is performing really slow, it is taking around 9 seconds for a simple binary And ...
0
votes
0answers
23 views

MySQL Full-Text-Search (With Rank)

Hi i am currently struggling to implement a simple search feature for a blog like site. To simplified i have three tables Table user (user_id, username, and so on...) Table post (post_id, ...
0
votes
0answers
11 views

Lucene.net with large files

I was wondering if it was possible to index and store a number of large files each over 4GB in size. I had no problems doing so and searching the documents with one exception - I was not able to ...
0
votes
0answers
14 views

Doing Fulltext Searches within Left Joins

I am working on improving a search engine for my website and I think the best way to do this would be with Fulltext indexes and Left Joins. There are three tables (a user table, a "genres" table, and ...
0
votes
1answer
13 views

MySQL - Full Text Search - Losing index

So here is the scenario: MySQL have 1 MYISAM Table colum named v.value has a full text index Basic query works fine, uses the index as expected: SELECT p.online_identifier FROM (...) WHERE ...
1
vote
0answers
29 views

django orm search with postgres

For small searches in PostgreSQL, http://django-orm.readthedocs.org/en/latest/orm-pg-fulltext.html can be used easily, as shown in the docs. Following are the steps, I used to implement it - ...
0
votes
0answers
4 views

How to pass a document collection from a FTIndex search into a dataView

I have a fairly complex FTIndex search that I do in the Search Property of a dataView, the dataView has two categorized columns which work correctly if I do not do the FTIndex search. Is there a way ...
0
votes
0answers
12 views

Symfony2: fulltext with mysql5.5 and innodb

I have a project that running under Symfony 2.2 and MySQL 5.5 with InnoDB engine. Now I need to add fulltext indexes for some fields and make fulltext searches and selects by that fields. So since ...
0
votes
1answer
22 views

How to search multi keywork in linq query

i have this code in homepage CheckBox[] ch= new CheckBox[12]; ch[0] = ChkContextA; ch[1]= ChkContextB; ch[2]= ChkContextC; ch[3]= ...
0
votes
1answer
31 views

Sql Server: altering a view makes clustered and full-text search indexes to be deleted

Scenario I have got two tables: tblA and tblB, with the same structure. Every moment, one of them is online, and the other one is in stand by. Periodically data are updated in the stand by table, it ...
0
votes
3answers
41 views

Why the where clause is not working on sharepointsearch?

StringBuilder xmlString = new StringBuilder( "<QueryPacket xmlns='urn:Microsoft.Search.Query'>" + "<Query><SupportedFormats><Format revision='1'> ...
0
votes
0answers
15 views

Full text search on a view, not entirely getting there

I have created two views to try and get to the completed query, but I got stuck on an issue on each of them. The first one, I get my data correctly, but since it's using a sub-query to reach its ...
0
votes
0answers
22 views

How do I implement “smart” search like foursquare [closed]

I've created a website where one can search for stores selling specific brands. Currently I have two search inputs; One for store and one for brand. I search by using LIKE with %. I got one table for ...
1
vote
1answer
38 views

How can I smartly extract information from an HTML page?

I am building something that can more or less extract key information from an arbitrary web site. For example, if I crawled a McDonalds page and wanted to figure out programatically the opening and ...
1
vote
0answers
19 views

Full Text Catalog [closed]

I am using SQL Server 2008 R2. I need to find when and which user created full text catalog. Also, when were fields that need to be full text index in that catalog were added/modified/or removed ...
-3
votes
0answers
35 views

which web application framework for java should i use? [closed]

I making an search engine as a project, and decided to use Java as language, since it is very old and powerful, with almost any tools available for it. Which framework i should use for it? So that it ...
0
votes
1answer
23 views

Futher optimization of Postgres Full-text search on a Cloud Server

I am running Postgres 9.1 on a cloud server (which I'm aware is far from ideal, we are hoping to migrate at some point this year). This server frequently performs full text queries on a table with ...
0
votes
2answers
58 views

Get total record count in Lucene or SQL SERVER Full Text Search

I have a table named Tags. Within this table I have a ID, an tag name. I would like to find total record count by group by when user type in some prefix words in a web page textbox. Same as ...
0
votes
0answers
4 views

Sort and categorize the return from a FTIndex search

I have a dataView that specifies a couple of viewCategoryColumns and it displays them correctly. I have then added a formula into the Search in view results to return a subset of the data, and this ...
0
votes
2answers
31 views

How can I search for all terms across two fields in Solr?

All terms in the query should be present in the combined content of the fields. E.g. when I search for a combination of terms a document should be returned if: all terms are present in the ...
0
votes
0answers
22 views

“Problematic” characters in to_tsquery() function

This query to_tsquery(' word1 | ( ') returns ERROR: no operand in tsquery: "word1 | (", that is, there are some characters, which causes error, if use they as word context in to_tsquery() function ...
0
votes
0answers
29 views

About prefix search in SQL Server full-text search

Citys table: ID CityName 1 America City China 2 China City America When I use the SELECT * FROM dbo.Citys WHERE CityName LIKE'America%` which get the correct record! But use ...
1
vote
2answers
49 views

data structure to search for a word in a phrase

(I'm developing with android sdk, but maybe it's not important) I read from a file several phrase and save them in a collection. eg.: "hello world", "you say hello", "big world" I want to make ...
0
votes
0answers
41 views

How to get number of matches in a document

here is my code String title = "Java web developer"; String[] splitTitle = title.split(" "); BooleanQuery query = new BooleanQuery(); for (String str : splitTitle) { Query query1 ...
1
vote
3answers
82 views

Query is not understandable - using field Fulltext search [Tags] = “foo”

I have a problem that only happens rarely with FT search. but once it happens it stays. I use the following search term in the FT search box in Lotus Notes [Tags] = "foo" in most application this ...
1
vote
0answers
17 views

MySQL FTS boolean mode operator customizing

I'm using the InnoDB FTS of MySQL 5.6.10 and want to change the default behavior of the boolean operators. Note In implementing this feature, MySQL uses what is sometimes referred to as implied ...
0
votes
1answer
19 views

Interesting MATCH AGAINST issue: not searching some words

I have a table like this: |====brand=====|======title================| |....Apple.....|...iPhone 5 32 GB..........| |....Sony......|...Bluetooth Headset.......| And i am using FULL TEXT SEARCHING ...
0
votes
1answer
31 views

Postgresql full text search on really short documents (filename)

I have a database of filenames in which I'm trying to search using PGs full text search facility. I'm running the search query on a table of filenames, the problem is that the ranking functions are ...
0
votes
2answers
39 views

Why are my search results not displayed?

When I make I search in my web form, it appears that matches are found but they are not displayed: What can I do to make the SERP display? My code is: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML ...
-3
votes
0answers
29 views

how to fix my code of search algorithm in verilog?

i have a question about verilog code. I'm doing a search algorithm code; basically i have 3 codes, test bench which has the initial inputs and portmapping that connects my ROM which has the addresses ...
1
vote
1answer
16 views

sql injection in sqlite full text search

consider sqlite3 fts4 table c.execute("CREATE VIRTUAL TABLE docs USING fts4(content)") Is the following safe from sql injection where txt contains a string? I am not sure if parameterised ...
0
votes
2answers
42 views

How to build a full text search similar (as quick & as accurate) to Google Drive?

Google Drive searching is really amazing. It built up a full text search index instantly right after I had uploaded the document(pdf/M$ office document). Since I want to use this technology in my own ...
-1
votes
0answers
9 views

Text search smarphone when disconnected [closed]

Working on a google drive cross platform mobile app that will need to bring some documents (only .pdf files) down locally and have the ability to search all documents on the iPhone/Pad Android ...
0
votes
1answer
21 views

MySQL FULLTEXT search on part of the column text?

I am interesting in applying fulltext search on a column which contains the complete path to a document. For instance below: Dir1/Dir2/Countries/regions/Countries regions list.pdf Now the question ...
0
votes
0answers
30 views

Why CPU usage close to reach to 100% when i use SOLR index the documents

We use solr as out full text searcher. we use multi cores with solr and we have approximately 5 hundred million data. we batch update our index when reaches 1000 new record without commit them because ...
0
votes
0answers
19 views

How to add search index only for a particular subclass in Hibernate Search

I am new to Hibernate Search and full text search. I have gone through some of the basic tutorials. In my project, I have an Users super class inherited by 2 sub classes admins and sellers. Sellers ...
7
votes
3answers
180 views

Combining free text search with another condition is slow

I have a free text catalog on a simple table on SQL Server 2008R2: CREATE FULLTEXT CATALOG customer_catalog; CREATE FULLTEXT INDEX ON customer ( name1 ) KEY INDEX customer_pk ON ...
0
votes
1answer
29 views

sql server full text search strange search result

i using SQL Server 2008 R2 on Windows Server 2003 R2 for an article database. I have a field with the name of that article. Here are some examples: NYM-J 3X1,5 grau Ring 100 m NYM-O 3X1,5 grau ...
0
votes
1answer
38 views

GAE Full Text Search: can only match exact word? how to search like contains(…)?

Just tried GAE(1.7.7 Java) Full Text Search and found if the search string is work, surprisingly it will not match working, worked, or hardworking, homework, I'd like to know if i miss something in ...
0
votes
0answers
49 views

Full Text search on varbinary(max) column is not working

I've searched every site, blog (even the answers here) but none seem to work. I created a db in SQL Server 2008 r2 (Fulltext search is activated and available for the created database), create a table ...
0
votes
1answer
20 views

Sorting by columns and relevancy

For example I am searching by the following query: select Title, Description from dbo.Activity where contains((Title, Description), '"open" and "folder"') I just want to sort result set firstly by ...
0
votes
1answer
46 views

Querying Solr Multi valued fields using range

I have an oddity in Solr with multi valued fields which I can seem to replicate repeatedly. I have a set of titles which have a field called special_offer_type. This field is of the type: [ "5", ...
0
votes
1answer
35 views

BM25 implementation in SQL Server

I've hit a stump, while trying to implement the BM25 algorithm in SQL Server 2008 R2. I know that SQL Server includes the Full-Text Search option, which already implements a variant of BM25, but I ...
0
votes
1answer
43 views

Python : parse string to sub string for searching

My web site run on gae, I want to implement a input-tag-box like tags input box in SO, but search on gae required user enter whole word for match. Example hello world required user enter world or ...
0
votes
0answers
27 views

Android:Reading full text of a Epub file and full text search on ePub

I'm working on a App where I need to implement full text search on an ePub file. One of the ways I thought of implementing is reading the whole text of an ePub file and pushing it in SQLite db and ...
0
votes
1answer
17 views

SQlite joining results

I have a table , let's call it Customer and a FullText Table Customer_t which based on the text in the table that is indexed. Customer ID Name City Customer_t ID SearchText (just the ...
0
votes
1answer
19 views

SQLite FullText Index search on 2 terms with AND & OR

I have created a Full Text Index and can search terms like this: SELECT * FROM mytable where myfield MATCH 'Food' How do I add an AND clause to return records with the word FOOD and DOG ? I've ...
0
votes
0answers
28 views

How to change default operator for search index in ElasticSearch?

By default ElasticSearch (and Lucene) implies "OR" if there is no AND/OR operator between two keywords. I can change it in search query by using default_operator: { "query" : { "filtered" ...
0
votes
1answer
35 views

Thinking sphinx with rails - order by association column

Is there an ability to order search results by association column in thinking sphinx? I have index defined as follows: ThinkingSphinx::Index.define :demand, :with => :active_record, :delta => ...

1 2 3 4 5 62