AINIRO.IO
AINIRO.IO
Create an MS SQL adapter with similar "API" as MySQL, to allow users to use MS SQL. Will probably not be a part of the core, since it probably wouldn't...
My employer is looking for a few good .Net devs, and asked me if I could reach out into my network. Since I figured all the best ones are here,...
Sometimes image URLs contains parenthesis such as follows. ``` :max_bytes(150000):strip_icc()/TAL-Whale-ALASKAUPDATE0323-7bbad6b4e1914d748074ebd3b6673273.jpg) ``` I realise that these...
First I want to thank you for an incredible library. It seems to be consistently returning results in the milliseconds timeframe, where my previous logic had to apply a table...
Much better structure. Among some of the things I have done are; * Created `SqlStatement` class encapsulating all SQL statements executed towards SQLite * Moved things into relevant _"xyz.h"_ file...
In dotnet there's this thing called _"Connection Pooling"_ that will reuse the same connection for multiple threads. It's an optimisation thing for ASP.NET and web apps. If I turn it...
`sqlite3_vss_init` requires the vector plugin to have been initialised before initialising the VSS plugin. The following statement fails in fact. ``` // TODO: The && false parts needs to be...
The way I've understood the lib, it's reading the same `faiss::Index` from the database's shadow table every single time a connection is created. This of course has dramatic repercussions for...
Following your recipe to the last detail, and nothing seems to work. It give me ... ``` This file contains any messages produced by compilers while running configure, to aid...
I'm a heavy user of sqlite-vss, as you're probably aware of, having provided several PRs for it - And one thing that always bothered me with sqlite-vss, is that the...