Skip to main content

All Questions

Filter by
Sorted by
Tagged with
2 votes
1 answer
79 views

I'm trying to implement a robust search function in my NestJS/Mongoose application that can handle partial matches while being case-insensitive and diacritics-insensitive (ignoring accents). My ...
Steeven Delucis's user avatar
-1 votes
0 answers
101 views

How to enable full-text search feature in SQL Server for .NET Aspire? var sqlServer = builder.AddSqlServer("sqlServer", builder.AddParameter("password123!!!", true)) .WithLifetime(...
Joseph Wambura's user avatar
0 votes
0 answers
45 views

I'm using the Google Places SDK for iOS and Android, along with the new Places API (New), to implement text-based place search (e.g., "pizza" near the current location). I'm passing the same ...
komukomu2's user avatar
3 votes
0 answers
78 views

We noticed that full-text index searches were not returning results for the "again" search param. We excluded the possibility that the word "again" is part of the MySQL FullText ...
Christian Mitkov's user avatar
0 votes
0 answers
73 views

I have enabled a full-text index on my MySQL table with the ngram parser as shown below: SHOW VARIABLES LIKE 'ngram_token_size'; -- Default set to 2 ALTER TABLE MyTable ADD FULLTEXT INDEX FT_MyTable (...
Harsh Kanakhara's user avatar
2 votes
1 answer
59 views

I'm learning about full-text search in postgres using ts_vector & ts_query, by analyzing texts in strings. But I'm getting a false return but instead I should be getting a true output. Here is my ...
Cordev87's user avatar
0 votes
1 answer
63 views

MySQL fulltext index search with multiple columns MySQL Table - sample_table: col1 col2 col3 col4 Fulltext index: Keyname: some_keyname Columns: col1, col2, col3, col4 Question: To search for a string ...
rgg's user avatar
  • 21
0 votes
1 answer
49 views

I have the following entity in a Spring Boot project: @Entity @Getter @Setter @Table(name = "listings", indexes = { @Index(name = "idx_exposition_east", ...
ilhan's user avatar
  • 9,085
0 votes
0 answers
64 views

Optimizing MySQL LIKE Query with Pattern Matching for Large Dataset (20M+ records) I'm struggling with performance issues in MySQL while searching through a large table containing over 20 million ...
Aryan Gupta's user avatar
0 votes
0 answers
30 views

I am trying to combine a full text search and a vector search together in OpenSearch. When I run this: { "multi_match": { "query": "generic search term" } ...
Frank Conry's user avatar
  • 2,748
0 votes
1 answer
44 views

I'm working with Google Spanner (MySQL) in a FastAPI application and encountering this error when trying to search for a column with search index on (as the docs): status = StatusCode.INVALID_ARGUMENT ...
Yosef Madboly's user avatar
-4 votes
1 answer
57 views

Currently 2025, MongoDB community edition is about only 1 full-text index per collection. The scenario is this: Collection C already has full-text for 3 fields: FieldA, FieldB, FieldC Need to search ...
Dan D's user avatar
  • 8,769
0 votes
1 answer
88 views

I'm trying to create an FTS5 virtual table in SQLite such that hyphens (–) are treated as part of a token. My goal is to ensure that an address like "24-34" is indexed as a single token ...
AussieAndy's user avatar
0 votes
2 answers
67 views

I am implementing Hibernate Search 6 in my Spring Boot Application. I need the capability to search for partial matches, similar to %like% in SQL. From the documentation and other forums, it seems ...
Manchanda. P's user avatar
1 vote
1 answer
62 views

I'm currently using SQL Server 2016 and I need to search for n-number of user input terms across four different full-text index tables. We originally tried this: DECLARE @searchString varchar(1000) ...
LarryG's user avatar
  • 717
0 votes
0 answers
44 views

I think I've figured out a reasonable solution to the anagram problem, in SQL, which I've answered here, and uses a DB system basically like this: CREATE TABLE language_string ( id BIGINT NOT NULL ...
Lance Pollard's user avatar
0 votes
0 answers
78 views

How do you develop a feature that changes the color of characters within a string that match the text entered into a text field, using Jetpack Compose? This is a common feature in applications that ...
Bob Rasner's user avatar
0 votes
1 answer
71 views

I am new to postgres and am having trouble speeding this tsvector query up. I already have indexes on all the tables but the query is taking absurdly long. Any help is greatly appreciated as I assume ...
Isaiahm's user avatar
  • 41
0 votes
2 answers
155 views

I am using a Postgres table to store HTML data. One of the columns is of type varchar, and this is where the HTML data is stored. My understanding is that this column datatype has no maximum length. I ...
user2138149's user avatar
  • 18.6k
0 votes
0 answers
71 views

I have install manticore successfully.and my manticore config file is: source my_source{ type = mysql sql_host = 127.0.0.1 sql_user = test sql_pass = iflytek ...
happy's user avatar
  • 1
-2 votes
2 answers
70 views

The table xx_user_detail, user_id is int primary index, site1-site9 is combined fulltext index, the total row count is 5 million SELECT * FROM xx_user_detail WHERE (user_id=14) AND MATCH (site1,site2,...
scvyao's user avatar
  • 143
0 votes
0 answers
139 views

I have a table as shown below. A user can search this table on the basis of Interests. For example, user can search “Carl to”. Then it should return the first 2 emails, because we have 2 similar ...
Jay's user avatar
  • 792
0 votes
0 answers
82 views

I do have data divided into 60 sqlite database files. Each database represent a city. Number of rows is different in each database but schema is exactly same with total number of fields are 12. Out of ...
Prashant's user avatar
  • 947
0 votes
0 answers
39 views

In MySQL 5.6.51 using InnoDB, I have two tables: users user_aka_names Table details: user_aka_names has a foreign key, user_id to users One user can have many user_aka_names Not all users have a ...
Luke Krauss's user avatar
0 votes
1 answer
124 views

I have a website connected to a MySQL database of songs, and am working to improve full-text search on the site. A simple query with MATCH() works as expected, but as soon as I add an aggregate ...
Samuel Bradshaw's user avatar

1
2 3 4 5
173