From a06906ecdbd088d7c0dd7b757345abbd4879694c Mon Sep 17 00:00:00 2001 From: glendc Date: Mon, 15 Apr 2024 10:57:07 +0200 Subject: [PATCH] add more content to about section of site --- www/index.html | 28 ++++++++++++++++++++++------ www/style.css | 2 +- 2 files changed, 23 insertions(+), 7 deletions(-) diff --git a/www/index.html b/www/index.html index 86d0af9..b43c01d 100644 --- a/www/index.html +++ b/www/index.html @@ -47,12 +47,28 @@
venndb banner -

- An append-only in-memory database in Rust for rows queried using bit (flag) columns. - This database is designed for a very specific use case where you have mostly static data that you - typically load at startup and have to query constantly using very simple filters. Datasets - like these can be large and should be both fast and compact. -

+
+

+ An append-only in-memory database in Rust for rows queried using bit (flag) columns. + This database is designed for a very specific use case where you have mostly static data that you + typically load at startup and have to query constantly using very simple filters. Datasets + like these can be large and should be both fast and compact. +

+ +

+ For the limited usecases where venndb can be applied to, it has less dependencies and is faster then traditional choices, + such as a naive implementation or a more heavy lifted dependency such as Sqlite. +

+ + + See the benchmarks for more information on this topic. + + +

+ This project was developed originally in function of rama, where you can see it being used for example to provide an in-memory (upstream) proxy database. + Do let us know in case you use it as well in your project, such that we can assemble a showcase list. +

+