Skip to content

Commit a37c55a

Browse files
committed
Add badges to README
1 parent d259f74 commit a37c55a

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

README.adoc

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
= Possum
22

3+
image:https://img.shields.io/crates/v/possum-db[Crates.io Version,link=https://crates.io/crates/possum-db]
4+
image:https://img.shields.io/docsrs/possum-db[docs.rs,link=https://docs.rs/possum-db/latest/possum/]
5+
36
== What is it?
47

58
Possum is a key-value cache stored directly on disk. It supports concurrent access from multiple processes without requiring interprocess communication or sidecar processes. It efficiently evicts data by using hole punching and sparse files. It supports read snapshots by using file cloning, a feature available on https://www.ctrl.blog/entry/file-cloning.html[filesystems] such as Btrfs, XFS, ZFS, APFS and ReFSv2.

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Possum
22

3+
![Crates.io Version](https://img.shields.io/crates/v/possum-db)
4+
![docs.rs](https://img.shields.io/docsrs/possum-db)
5+
36
## What is it?
47

58
Possum is a key-value cache stored directly on disk. It supports concurrent access from multiple processes without requiring interprocess communication or sidecar processes. It efficiently evicts data by using hole punching and sparse files. It supports read snapshots by using file cloning, a feature available on [filesystems](https://www.ctrl.blog/entry/file-cloning.html) such as Btrfs, XFS, ZFS, APFS and ReFSv2.

0 commit comments

Comments
 (0)