{"id":20135770,"url":"https://github.com/replikativ/konserve-rocksdb","last_synced_at":"2026-04-01T22:27:54.038Z","repository":{"id":45381033,"uuid":"427474056","full_name":"replikativ/konserve-rocksdb","owner":"replikativ","description":"A RocksDB backend for konserve","archived":false,"fork":false,"pushed_at":"2026-03-21T23:45:35.000Z","size":2428,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"main","last_synced_at":"2026-03-22T12:45:43.640Z","etag":null,"topics":["clojure","konserve","rocksdb"],"latest_commit_sha":null,"homepage":"","language":"Clojure","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"epl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/replikativ.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-11-12T19:27:49.000Z","updated_at":"2026-03-21T23:44:13.000Z","dependencies_parsed_at":"2025-01-13T09:42:59.774Z","dependency_job_id":null,"html_url":"https://github.com/replikativ/konserve-rocksdb","commit_stats":{"total_commits":5,"total_committers":2,"mean_commits":2.5,"dds":"0.19999999999999996","last_synced_commit":"ce68b1c2dbf69ec0cb8f15d10f17895da4d7a668"},"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/replikativ/konserve-rocksdb","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/replikativ%2Fkonserve-rocksdb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/replikativ%2Fkonserve-rocksdb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/replikativ%2Fkonserve-rocksdb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/replikativ%2Fkonserve-rocksdb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/replikativ","download_url":"https://codeload.github.com/replikativ/konserve-rocksdb/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/replikativ%2Fkonserve-rocksdb/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31292639,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-01T21:15:39.731Z","status":"ssl_error","status_checked_at":"2026-04-01T21:15:34.046Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["clojure","konserve","rocksdb"],"created_at":"2024-11-13T21:16:26.855Z","updated_at":"2026-04-01T22:27:54.015Z","avatar_url":"https://github.com/replikativ.png","language":"Clojure","funding_links":[],"categories":[],"sub_categories":[],"readme":"# konserve-rocksdb\n\nA [RocksDB](https://rocksdb.org/) backend for [konserve](https://github.com/replikativ/konserve), using [clj-rocksdb](https://github.com/kotyo/clj-rocksdb).\n\n## Usage\n\nAdd to your dependencies:\n\n[![Clojars Project](http://clojars.org/org.replikativ/konserve-rocksdb/latest-version.svg)](http://clojars.org/org.replikativ/konserve-rocksdb)\n\n## Configuration\n\n``` clojure\n(require '[konserve-rocksdb.core]  ;; Registers the :rocksdb backend\n         '[konserve.core :as k])\n\n(def config\n  {:backend :rocksdb\n   :path \"./tmp/rocksdb/konserve\"\n   :id #uuid \"550e8400-e29b-41d4-a716-446655440000\"\n   ;; Optional:\n   :map-size (* 1024 1024 1024)  ;; Default: 1GB\n   :flags 0})\n\n(def store (k/create-store config {:sync? true}))\n```\n\nFor API usage (assoc-in, get-in, delete-store, etc.), see the [konserve documentation](https://github.com/replikativ/konserve).\n\n## Implementation Details\n\n### Multi-key Operations\n\nThis backend supports multi-key operations (`multi-assoc`, `multi-get`, `multi-dissoc`).\n\n**No hard item limits** - operations scale with your RocksDB instance capacity.\n\n| Operation | RocksDB API | Atomicity |\n|-----------|------------|-----------|\n| `multi-assoc` | WriteBatch | Atomic |\n| `multi-get` | multiGetAsList | Efficient bulk read |\n| `multi-dissoc` | WriteBatch | Atomic |\n\n### Storage Format\n\nData is stored in two keys per entry (`key` for value, `key.meta` for header/metadata). This enables efficient metadata-only reads for garbage collection while using `multiGetAsList` to fetch both in a single call for full reads.\n\n## License\n\nCopyright © 2021-2026 Christian Weilbach, Judith Massa\n\nLicensed under Eclipse Public License (see [LICENSE](LICENSE)).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freplikativ%2Fkonserve-rocksdb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freplikativ%2Fkonserve-rocksdb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freplikativ%2Fkonserve-rocksdb/lists"}