Skip to content

Commit

Permalink
add more content to about section of site
Browse files Browse the repository at this point in the history
  • Loading branch information
glendc committed Apr 15, 2024
1 parent d046215 commit a06906e
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 7 deletions.
28 changes: 22 additions & 6 deletions www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion www/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ main {
justify-items: center;
}

#about {
#about p {
margin: 0 auto;
padding: 10px;
}
Expand Down

0 comments on commit a06906e

Please sign in to comment.