{"id":18047118,"url":"https://github.com/jw3126/diskbackeddicts.jl","last_synced_at":"2025-04-10T05:02:40.456Z","repository":{"id":81963228,"uuid":"114153269","full_name":"jw3126/DiskBackedDicts.jl","owner":"jw3126","description":"Simple Dict that is backed on hard disk","archived":false,"fork":false,"pushed_at":"2023-06-03T06:20:40.000Z","size":43,"stargazers_count":8,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-07T15:58:36.857Z","etag":null,"topics":["julia"],"latest_commit_sha":null,"homepage":"","language":"Julia","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jw3126.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}},"created_at":"2017-12-13T18:07:57.000Z","updated_at":"2022-08-02T20:01:26.000Z","dependencies_parsed_at":"2024-10-30T19:10:26.282Z","dependency_job_id":"967ffb98-5e65-452d-9724-eb70c630d196","html_url":"https://github.com/jw3126/DiskBackedDicts.jl","commit_stats":{"total_commits":31,"total_committers":1,"mean_commits":31.0,"dds":0.0,"last_synced_commit":"a46a2a986f5437128e9b74bc5e59a9d1ca99363a"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jw3126%2FDiskBackedDicts.jl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jw3126%2FDiskBackedDicts.jl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jw3126%2FDiskBackedDicts.jl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jw3126%2FDiskBackedDicts.jl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jw3126","download_url":"https://codeload.github.com/jw3126/DiskBackedDicts.jl/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245217930,"owners_count":20579300,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["julia"],"created_at":"2024-10-30T19:10:23.356Z","updated_at":"2025-03-27T17:30:39.461Z","avatar_url":"https://github.com/jw3126.png","language":"Julia","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DiskBackedDicts\n\n\n[![Build Status](https://travis-ci.org/jw3126/DiskBackedDicts.jl.svg?branch=master)](https://travis-ci.org/jw3126/DiskBackedDicts.jl)\n[![codecov.io](https://codecov.io/github/jw3126/DiskBackedDicts.jl/coverage.svg?branch=master)](http://codecov.io/github/jw3126/DiskBackedDicts.jl?branch=master)\n\n## Usage\n\n```julia\njulia\u003e using DiskBackedDicts\n\njulia\u003e d = DiskBackedDict(\"somepath.jld2\")\nDiskBackedDict{Any,Any} with 0 entries\n\njulia\u003e d[\"hello\"] = \"world\"\n\"world\"\n\njulia\u003e d\nDiskBackedDict{Any,Any} with 1 entry:\n  \"hello\" =\u003e \"world\"\n\njulia\u003e exit()\n```\nNow start a new session:\n```julia\n               _\n   _       _ _(_)_     |  Documentation: https://docs.julialang.org\n  (_)     | (_) (_)    |\n   _ _   _| |_  __ _   |  Type \"?\" for help, \"]?\" for Pkg help.\n  | | | | | | |/ _` |  |\n  | | |_| | | | (_| |  |  Version 1.0.1 (2018-09-29)\n _/ |\\__'_|_|_|\\__'_|  |  Official https://julialang.org/ release\n|__/                   |\n\njulia\u003e using DiskBackedDicts\n\njulia\u003e d = DiskBackedDict(\"somepath.jld2\")\nDiskBackedDict{Any,Any} with 1 entry:\n  \"hello\" =\u003e \"world\"\n\n```\n\n## Performance\n\nThe whole dictionary is cached in memory. `getindex` performs no disk operations and is as fast as for an\nordinary `Dict`. `setindex!` performs disk operations and is slow.\n\n## Limitations\n\n* Only one julia process can access a `DiskBackedDict` at a particular path simultaneously.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjw3126%2Fdiskbackeddicts.jl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjw3126%2Fdiskbackeddicts.jl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjw3126%2Fdiskbackeddicts.jl/lists"}