-
Either use ripgrep, or:
- generate an index of trigrams of each symbol at index time
- compute trigrams of the query
- use a MinHash scheme to find best candidates
this has the potential to be…
-
Datasette core's SQLite usage is pretty tame: `CREATE TABLE`, simple selects, update/insert, etc. I don't think we need to use a lot of fancy new SQLite features. Except maybe UPSERt.
SQLite releas…
-
I am trying to create a fuzzy full-text search for a website and I'm quite lost as to how one would add extensions into absurd-sql.
The extensions are fts4 and spellfix1.
Any solutions?
-
SQLite when using the FTS3/4 extensions can support the concept of a snippet. Essentially the snippet is a subset of the indexed column, that has html bold tags surrounding the matched terms.
Source …
-
Hey,
I have a database that I save in HTML from couple of web scrapers. There are around 200k+, 50+ rows in a couple of tables, with sqlite file weighing around 600MB.
The app runs on a VPS with 2…
-
**Describe the bug**
The % wildcard is causing issues as keywords as 5k 1% doesn't work
**To Reproduce**
Steps to reproduce the behavior:
1. Assign component
2. keywords: 5k 1%
3. You have…
-
比如readme中的例子
select rowid as id, TITLE,CONTENT, simple_highlight(t1, 0, '[', ']') as title_highlighted, simple_highlight(t1, 1, '[', ']') as content_highlighted from t1 where t1 match simple_query('…
-
From I am planning to end support for old Android versions as follows:
- definite: Android pre-4.0
- extremely likely: Android 4.0
- very likely: Android 4.1-4.3
_To be partially maintained as …
-
Reported by: **[daschuer](https://github.com/daschuer)**
Date: 2014-05-12T06:35:53Z
Status: Confirmed
Importance: Wishlist
Launchpad Issue: [lp1318501](https://bugs.launchpad.net/bugs/1318501)
Tags: l…
-
I have a webapplication with a Django backend that I am currently rewriting in nim using prologue and norm.
Django has a pretty neat signal system that allows you to run defined code before or aft…