{"id":29014654,"url":"https://github.com/raisess/escale","last_synced_at":"2025-06-25T20:13:56.154Z","repository":{"id":37799108,"uuid":"499882742","full_name":"Raisess/escale","owner":"Raisess","description":"Another (\"key\", \"value\") cache storage lib :)","archived":false,"fork":false,"pushed_at":"2022-10-21T10:36:55.000Z","size":29,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2023-03-02T22:40:58.667Z","etag":null,"topics":["cache","cache-storage","cachemanager","cpp11","lightweight"],"latest_commit_sha":null,"homepage":"","language":"C++","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/Raisess.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}},"created_at":"2022-06-04T16:42:59.000Z","updated_at":"2022-07-10T23:24:01.000Z","dependencies_parsed_at":"2022-08-19T04:01:43.351Z","dependency_job_id":null,"html_url":"https://github.com/Raisess/escale","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"purl":"pkg:github/Raisess/escale","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Raisess%2Fescale","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Raisess%2Fescale/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Raisess%2Fescale/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Raisess%2Fescale/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Raisess","download_url":"https://codeload.github.com/Raisess/escale/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Raisess%2Fescale/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261945427,"owners_count":23234246,"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":["cache","cache-storage","cachemanager","cpp11","lightweight"],"created_at":"2025-06-25T20:13:53.854Z","updated_at":"2025-06-25T20:13:56.107Z","avatar_url":"https://github.com/Raisess.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ESCALE\n\n- A small lib for (\"key\", \"value\") cache.\n\n## Usage\n\n```cpp\n#include \u003ciostream\u003e\n#include \"Cache.h\"\n\nint main() {\n  Cache* cache = new Cache();\n\n  cache-\u003eset(\"Key\", \"Value\");\n  std::cout \u003c\u003c cache-\u003eget(\"Key\") \u003c\u003c std::endl; // Value\n\n  return 0;\n}\n```\n\n- Using a single instance\n\n```cpp\n#include \u003ciostream\u003e\n#include \"Cache.h\"\n\nint main() {\n  Cache* cache_one = Cache::SingleInstance();\n\n  cache_one-\u003eset(\"Key\", \"Value\");\n  std::cout \u003c\u003c cache_one-\u003eget(\"Key\") \u003c\u003c std::endl; // Value\n\n  Cache* cache_two = Cache::SingleInstance();\n\n  std::cout \u003c\u003c cache_two-\u003eget(\"Key\") \u003c\u003c std::endl; // Value\n\n  return 0;\n}\n```\n\nKeep it simple, feel free to contribute. Have a nice day! :)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraisess%2Fescale","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fraisess%2Fescale","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraisess%2Fescale/lists"}