full-text-search Questions
13
Note: I am using SQL's Full-text search capabilities, CONTAINS clauses and all - the * is the wildcard in full-text, % is for LIKE clauses only.
I've read in several places now that "leading wildc...
Bub asked 6/8, 2008 at 13:52
1
Solved
Json received from the server has this form.
[
{
"id": 1103333,
"name": "James",
"tagA": [
"apple",
"orange",
"grape"
],
"tagB": [
"red",
"green",
"blue"
],
"tagC": null
},
{
"id...
Rios asked 2/7, 2018 at 3:33
2
Solved
I'm looking for a way to support with good performances case insensitive + accent insensitive search. Till now we had no issue on this using MSSql server, on Oracle we had to use OracleText, and no...
Pak asked 20/2, 2015 at 11:31
1
Solved
I am new to Go and Bleve (sorry if I'm asking trivial things…). This search engine seems to be really nice, but I am getting stuck when it comes to deal with my search results.
Let's say we have a...
Becki asked 28/5, 2018 at 20:19
6
Solved
I am building a site in which I want to implement text search for the title and description of some objects. Since I will have little amount of objects (~500 documents) I am not considering Haystac...
Occident asked 21/7, 2012 at 16:42
3
Solved
Does silver_searcher support specifying multiple search expressions something like -e in grep?
I could not find any option in the document/help.
Materialize asked 11/1, 2017 at 15:27
1
Solved
A trie seems like it would work for small strings, but not for large documents, so not sure (1-100's of pages of text). Maybe it is possible to combine an inverted index with a suffix tree to get t...
Paralipomena asked 2/5, 2018 at 4:43
2
Solved
I have collection which has two fields
{
name : 'text English',
descr: 'Texto largo en español'
}
I would like to create a multi-language search, with more preferences for a name.
Up till now I ...
Stifling asked 5/8, 2013 at 18:31
1
I am create a simple app which can performance basic operations. SQLite is used as database. I want to perform wildcard search but I know that it has poor performance. I want to try out full text s...
Agential asked 18/4, 2018 at 7:44
0
NB:
I could have used a dictionary like Pspell, Aspell or Hunspell but this case does not apply properly to business names or cities. Furthermore, I don't want to query the DB for all the sugges...
Solfatara asked 4/4, 2018 at 0:33
3
Solved
I'm developing a Python tool which uses a sqlite3 virtual table with FTS5 (Full Text Search). I would like to know how to properly install from a tarball (or any other means) the needed requirement...
Strychnine asked 1/3, 2018 at 15:38
4
I want to try and use Elasticsearch as a full text search engine for a website in Hebrew.
I wanted to know if this Elasticsearch can produce good results for Hebrew and if there are any big website...
Aranyaka asked 16/1, 2013 at 22:13
4
Solved
Using SQL Server 2012 (in general using SQL Server 2008 R2 up to SQL Server 2016)
This question is a more specific re wording of SQL-Server Full Text Index Unexpected results. Please see here for ...
Encyclopedist asked 15/2, 2018 at 7:49
1
MS SQL SERVER 2012
I have a full text index configured on a database which for the main part seems to be functioning correctly. I have a keyword field that contains the following text:
Veterinar...
Phonetics asked 14/2, 2018 at 13:55
0
I am using postgresql 9.6. I am trying to understand ts_rank
I have a phrase "one two four" and my search query is 'one two three' So i am trying to get the ts_rank for all possible combinations a...
Fenestrated asked 9/2, 2018 at 4:51
2
Solved
When I use 'a:*' (also 'i:*', 's:*', 't:*')
SELECT id FROM mv_fulltextsearch1 WHERE to_tsvector(text) @@ to_tsquery('a:*') LIMIT 50;
Takes forever and prints the following PostgreSQL output a lo...
Primine asked 30/1, 2018 at 14:53
2
I have the query:
var query = DataContext.Fotos.Where(x => x.Pesquisa.Contais("myTerm")
The SQL generated is:
SELECT
...
FROM Fotos AS [Extent1]
WHERE [Extent1].[Pesquisa] LIKE N'%mytem%'
...
Halutz asked 12/9, 2014 at 23:56
4
Solved
What is an index in Elasticsearch? Does one application have multiple indexes or just one?
Let's say you built a system for some car manufacturer. It deals with people, cars, spare parts, etc. Do y...
Lida asked 22/2, 2013 at 13:59
3
Solved
I’m trying to do a full-text search in three seperate tables and sort the results by relevancy.
During my searches for the answer, I found out that I can’t use fulltext search in multiple tables. S...
Maciemaciel asked 19/11, 2010 at 16:9
5
Solved
I need to be able to search for text in a large number of files (.txt) that are zipped. Compression may be changed to something else or even became proprietary.
I want to avoid unpacking all files ...
Fevre asked 6/4, 2011 at 6:32
1
Currently, I am running the following code:
User.query.filter(or_(User.username.contains(query), User.name.contains(query)))
But naturally, when you're hitting a few million records and searching...
Somewhat asked 1/3, 2016 at 18:32
1
Solved
I'm trying to query an FTS table using SQLite.swift. Previously I have done it in Android. The essence of what I am trying to do is this:
SELECT *
FROM t2
WHERE id IN (SELECT docid
FROM fts_table...
Nyctaginaceous asked 13/8, 2016 at 19:25
3
Solved
I'm testing Amazon Cloudsearch for my web application and i'm running into some strange issues.
I have the following domain indexes: name, email, id.
For example, I have data such as: John Doe, [...
Tajo asked 28/4, 2015 at 16:37
2
I'm currently working on a project where we have indexed text content in SOLR. Every content is writen in one specific language (we have 4 differents
european languages) but we would like to add ...
Unaccountable asked 19/11, 2017 at 12:17
2
Solved
I know how to do this with raw PostgreSQL commands, but want to know if there is a way to do this with Django PostgreSQL search.
class Person(models.Model):
name = models.CharField(max_length=64)...
Salaidh asked 8/3, 2017 at 19:1
© 2022 - 2024 — McMap. All rights reserved.