{"id":20141232,"url":"https://github.com/alekcz/konserve-faraday","last_synced_at":"2026-06-08T08:02:18.941Z","repository":{"id":118112500,"uuid":"265774508","full_name":"alekcz/konserve-faraday","owner":"alekcz","description":"A DynamoDB backend with faraday for konserve.","archived":false,"fork":false,"pushed_at":"2020-05-21T06:54:00.000Z","size":15,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-11T12:36:24.350Z","etag":null,"topics":["clojure","dynamodb","faraday","konserve","replikati"],"latest_commit_sha":null,"homepage":null,"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/alekcz.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2020-05-21T06:40:17.000Z","updated_at":"2021-02-01T18:37:01.000Z","dependencies_parsed_at":null,"dependency_job_id":"aec2a38b-328f-4fc2-b124-75d197676cbc","html_url":"https://github.com/alekcz/konserve-faraday","commit_stats":{"total_commits":3,"total_committers":1,"mean_commits":3.0,"dds":0.0,"last_synced_commit":"40fe7b717e1266b888ca84bf7dc522765f8e6001"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":"alekcz/konserve-template","purl":"pkg:github/alekcz/konserve-faraday","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alekcz%2Fkonserve-faraday","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alekcz%2Fkonserve-faraday/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alekcz%2Fkonserve-faraday/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alekcz%2Fkonserve-faraday/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alekcz","download_url":"https://codeload.github.com/alekcz/konserve-faraday/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alekcz%2Fkonserve-faraday/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34053435,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-08T02:00:07.615Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","dynamodb","faraday","konserve","replikati"],"created_at":"2024-11-13T21:56:48.050Z","updated_at":"2026-06-08T08:02:18.905Z","avatar_url":"https://github.com/alekcz.png","language":"Clojure","funding_links":[],"categories":[],"sub_categories":[],"readme":"# konserve-faraday\n\nA [DynamoDB](https://aws.amazon.com/dynamodb/) backend for [konserve](https://github.com/replikativ/konserve-carmine) implemented with [faraday](https://github.com/Taoensso/faraday).\n\nThe purpose of konserve is to have a unified associative key-value interface for edn datastructures and binary blobs. Use the standard interface functions of konserve.\n\n# Status\n\n![master](https://github.com/alekcz/konserve-faraday/workflows/master/badge.svg) [![codecov](https://codecov.io/gh/alekcz/konserve-faraday/branch/master/graph/badge.svg)](https://codecov.io/gh/alekcz/konserve-faraday) \n\n## Usage\n\n_Link to the your lib on clojars_\n\n`[alekcz/store \"0.1.0-SNAPSHOT\"]`\n\n```clojure\n(require '[konserve-faraday.core :refer :all]\n         '[clojure.core.async :refer [\u003c!!] :as async]\n         '[konserve.core :as k])\n  \n  (def your-store (\u003c!! (new-faraday-store connection-uri :other-config \"info\" :and-more :yay)))\n\n  (\u003c!! (k/exists? your-store  \"cecilia\"))\n  (\u003c!! (k/get-in your-store [\"cecilia\"]))\n  (\u003c!! (k/assoc-in your-store [\"cecilia\"] 28))\n  (\u003c!! (k/update-in your-store [\"cecilia\"] inc))\n  (\u003c!! (k/get-in your-store [\"cecilia\"]))\n\n  (defrecord Test [a])\n  (\u003c!! (k/assoc-in your-store [\"agatha\"] (Test. 35)))\n  (\u003c!! (k/get-in your-store [\"agatha\"]))\n```\n\n## License\n\nCopyright © 2020 Alexander Oloo\n\nThis program and the accompanying materials are made available under the\nterms of the Eclipse Public License 2.0 which is available at\nhttp://www.eclipse.org/legal/epl-2.0.\n\nThis Source Code may also be made available under the following Secondary\nLicenses when the conditions for such availability set forth in the Eclipse\nPublic License, v. 2.0 are satisfied: GNU General Public License as published by\nthe Free Software Foundation, either version 2 of the License, or (at your\noption) any later version, with the GNU Classpath Exception which is available\nat https://www.gnu.org/software/classpath/license.html.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falekcz%2Fkonserve-faraday","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falekcz%2Fkonserve-faraday","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falekcz%2Fkonserve-faraday/lists"}