-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add more content to about section of site
- Loading branch information
glendc
committed
Apr 15, 2024
1 parent
d046215
commit a06906e
Showing
2 changed files
with
23 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,12 +47,28 @@ | |
<main> | ||
<div> | ||
<img src="banner.svg" alt="venndb banner" /> | ||
<p id="about"> | ||
An <strong>append-only</strong> 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. | ||
</p> | ||
<div id="about"> | ||
<p> | ||
An <strong>append-only</strong> 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. | ||
</p> | ||
|
||
<p> | ||
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 <em>Sqlite</em>. | ||
</p> | ||
|
||
<quote> | ||
See <a href="https://github.com/plabayo/venndb#benchmarks">the benchmarks</a> for more information on this topic. | ||
</quote> | ||
|
||
<p> | ||
This project was developed originally in function of <a href="https://ramaproxy.org/">rama</a>, where you can see it being used for example to provide an in-memory (upstream) proxy database. | ||
Do <a href="mailto:[email protected]">let us know</a> in case you use it as well in your project, such that we can assemble a showcase list. | ||
</p> | ||
</div> | ||
<button class="copy-button" title="Copy command to clipboard" type="button"> | ||
<span>cargo add venndb</span> | ||
<svg width="24" height="25" viewBox="0 0 24 25" fill="currentColor" xmlns="http://www.w3.org/2000/svg" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,7 +62,7 @@ main { | |
justify-items: center; | ||
} | ||
|
||
#about { | ||
#about p { | ||
margin: 0 auto; | ||
padding: 10px; | ||
} | ||
|