full-text-search Questions
4
Solved
FTS3/FTS4 doesn't work in python by default (up to 2.7). I get the error: sqlite3.OperationalError: no such module: fts3
or
sqlite3.OperationalError: no such module: fts4
How can this be resolved...
Expressionism asked 29/9, 2010 at 16:22
1
Solved
I am trying to figure out how to use TrigramSimilarity with unaccent for multiple fields.
So far i have:
def filter_by_location(self, queryset, location):
log.info('Filtering location: "{locatio...
Clasp asked 16/5, 2017 at 17:13
6
Solved
Does Microsoft Access have Full Text Search?
I know that MySQL and SQL Server have Full Text Search, but I am not too certain on Access.
If Access doesn't have Full Text, what is the best alterna...
Scurrility asked 30/12, 2008 at 2:45
2
I am searching a python script for a string, but I would like to see not just the lines that contain the string, but also if that code is nested inside a function or method (or, optionally, a loop ...
Phallus asked 10/11, 2014 at 3:20
5
Solved
Since it is not possible to find "blueberry" by the word "blue" by using a mongodb full text search, I want to help my users to complete the word "blue" to "blueberry". To do so, is it possible to ...
Serb asked 9/1, 2014 at 11:19
9
Solved
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...
Dhammapada asked 25/1, 2009 at 22:56
5
I've recently upgraded to Spring Data MongoDB 1.6.0.RC1, which is very good and implements the full text search feature of MongoDB 2.6 (huuurah!). My question is: how can I combine the Criteria and...
Peria asked 28/8, 2014 at 14:5
3
Solved
Novice on Lucene here.
I'm using it with Hibernate in a java client, and have been getting this error on a particular query:
HSEARCH000146: The query string 'a' applied on field 'name' has no mea...
Porky asked 7/12, 2012 at 15:6
1
Solved
I am creating search for photo gallery project where photos could have upto 50 tags (just like in shutterstock and fotolia). I am creating my search in elasticsearch. I have a field with datatype k...
Adiabatic asked 30/3, 2017 at 9:22
1
I am looking for SQL Server 2016 full text indexes and they are awesome to make searches for finding multiple words containing strings
When i try to compose the full text index, it shows Statistic...
Towardly asked 22/3, 2017 at 9:35
3
Solved
How to full text search and have filter? I want to search for a text among documents with language_id=10. I've tried it this way:
{
"query": {
"query_string": {
"query": "Declared"
},
{
"fil...
Bivalent asked 29/9, 2014 at 8:7
4
Solved
I have three tables in my database which are:
messages
topics
comments
Each of these tables has two fields called 'content' and 'title'. I want to be able to use 'Like' in my sql statement to lo...
Winfrid asked 4/7, 2011 at 17:42
1
What is the maximum possible value range of MATCH ('...' IN NATURAL LANGUAGE MODE) in MySQL?
MySQL provides FULLTEXT indexes, that can be retrieved with the MATCH (col1,col2,...) AGAINST (expr [search_modifier]) construct. There are several Full-Text Search variants, one of them (and the d...
Mcconaghy asked 20/4, 2013 at 0:54
1
Solved
I want to remove the stop words from my data but I do not want to stem the words since the exact words matters to me.
I used this query.
SELECT to_tsvector('english',colName)from tblName order b...
Labiovelar asked 5/2, 2017 at 12:41
2
When I change the order of the keywords in a boolean search, I get the same result but very different performance results.
The profiling on MySQL 5.6.33 with a MyISAM table, ft_min_word_len=2 and ...
Merilyn asked 21/1, 2017 at 20:59
2
I'm pretty new to MySQL full-text searches and I ran into this problem today:
My company table has a record with "e-magazine AG" in the name column. I have a full-text index on the name column.
W...
Numerable asked 19/8, 2011 at 10:39
5
Solved
Is there a way to limit the amount of text in a text field from a query? Here's a quick scenario....
I have 2 fields:
docId - int
text - string.
I will query the docId field and want to get a...
Tarrant asked 25/1, 2011 at 11:16
2
Solved
I working on a Solr 4 for optimizing my solr results rank based on popularity rank stored in Index.
Now when someone searches, apart from relevancy rank, I want to influence relevancy rank using p...
Roentgenology asked 9/11, 2013 at 10:38
1
Solved
Is there any way to boost search results on same field depending on type?
My basic boosting is something like:
GET _search
{
"query": {
"simple_query_string": {
"query": "mangan",
"fields":["...
Scintillator asked 23/1, 2017 at 17:33
3
Solved
How do you espace special characters in string passed to to_tsquery? For instance, this kind of query:
select to_tsquery('AT&T');
Produces:
NOTICE: text-search query contains only stop word...
Electrophilic asked 31/12, 2012 at 16:29
3
If anyone has experience using Oracle text (CTXSYS.CONTEXT), I'm wondering how to handle user input when the user wants to search for names that may contain an apostrophe.
Escaping the ' seems to ...
Devon asked 20/10, 2008 at 18:56
13
Solved
I want to write a web application using Google App Engine (so the reference language would be Python). My application needs a simple search engine, so the users would be able to find data spe...
Jarrettjarrid asked 6/10, 2008 at 21:10
6
Solved
I need to search across multiple columns from two tables in my database using Full-Text Search. The two tables in question have the relevant columns full-text indexed.
The reason I'm opting for Fu...
Zsigmondy asked 31/12, 2008 at 17:57
5
I realize that a lot of questions have been asked relating to full text search and Entity Framework, but I hope this question is a bit different.
I am using Entity Framework, Code First and need t...
Rouble asked 23/7, 2012 at 16:9
4
I'm looking for a way to emulate something like SELECT * FROM table WHERE attr LIKE '%text%' using a tsvector in PostgreSQL.
I've created a tsvector attribute without using a dictionary. Now, a qu...
Mayest asked 27/5, 2011 at 17:13
© 2022 - 2024 — McMap. All rights reserved.