{"id":21851919,"url":"https://github.com/ulbora/ulboracacheservice","last_synced_at":"2026-04-15T13:33:34.398Z","repository":{"id":87394598,"uuid":"103604418","full_name":"Ulbora/UlboraCacheService","owner":"Ulbora","description":"An in-memory cache service with a REST interface based on freecache","archived":false,"fork":false,"pushed_at":"2018-06-09T17:43:32.000Z","size":5459,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-07-25T21:57:55.879Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","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/Ulbora.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-09-15T02:26:02.000Z","updated_at":"2018-06-09T17:43:34.000Z","dependencies_parsed_at":null,"dependency_job_id":"ee82b85f-f6f8-4fe6-ad7e-39461fe492c5","html_url":"https://github.com/Ulbora/UlboraCacheService","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Ulbora/UlboraCacheService","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ulbora%2FUlboraCacheService","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ulbora%2FUlboraCacheService/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ulbora%2FUlboraCacheService/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ulbora%2FUlboraCacheService/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ulbora","download_url":"https://codeload.github.com/Ulbora/UlboraCacheService/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ulbora%2FUlboraCacheService/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31842934,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T13:28:40.153Z","status":"ssl_error","status_checked_at":"2026-04-15T13:28:29.396Z","response_time":63,"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":[],"created_at":"2024-11-28T01:12:21.374Z","updated_at":"2026-04-15T13:33:34.377Z","avatar_url":"https://github.com/Ulbora.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Go Report Card](https://goreportcard.com/badge/github.com/Ulbora/UlboraCacheService)](https://goreportcard.com/report/github.com/Ulbora/UlboraCacheService)\n\nUlbora Cache Service\n==============\n\nAn in-memory cache micro service based on freecache https://github.com/coocood/freecache.\nDesigned for use as a linked Docker container; therefore has no security added.\n\n\n## Headers\n- Content-Type: application/json (for POST and PUT)\n\n\n## Set Value\n\n```\nPOST:\nURL: http://localhost:3010/rs/cache/set\n\nExample Request\n{\n\t\"key\": \"testkey1\",\n\t\"value\": \"kens test value\"\n}\n  \n```\n\n```\nExample Response   \n\n{\n    \"success\": true\n}\n\n```\n\n\n\n## Get Value\n\n```\nGET:\nURL: http://localhost:3010/rs/cache/get/testkey1\n  \n```\n\n```\nExample Response   \n\n{\n    \"success\": true,\n    \"value\": \"kens test value\"\n}\n\n```\n\n## Set JSON Value as Base 64\n\n```\nPOST:\nURL: http://localhost:3010/rs/cache/set\n\nExample Request\n{\n\t\"key\": \"testkey1\",\n\t\"value\": \"ew0KICAgInNvbWVBdHRyIjoic29tZVZhbCIsDQogICAiYW5vdGhlckF0dHIiOiJhbm90aGVyVmFsIg0KfQ==\"\n}\n  \n```\n\n```\nExample Response   \n\n{\n    \"success\": true\n}\n\n```\n\n\n\n## Get JSON Value as Base 64\n\n```\nGET:\nURL: http://localhost:3010/rs/cache/get/testkey1\n  \n```\n\n```\nExample Response   \n\n{\n    \"success\": true,\n    \"value\": \"ew0KICAgInNvbWVBdHRyIjoic29tZVZhbCIsDQogICAiYW5vdGhlckF0dHIiOiJhbm90aGVyVmFsIg0KfQ==\"\n}\n\n```\n\n\n## Get Value not found\n\n```\nGET:\nURL: http://localhost:3010/rs/cache/get/testkey1\n  \n```\n\n```\nExample Response   \n\n{\n    \"success\": false,\n    \"value\": \"\"\n}\n\n```\n\n\n## Delete Value\n\n```\nDELETE:\nURL: http://localhost:3010/rs/cache/delete/testkey1\n  \n```\n\n```\nExample Response   \n\n{\n    \"success\": true\n}\n\n```\n\n# Docker use\n\n```\ndocker run --network=ulbora_bridge --name cache --log-opt max-size=50m --restart=always -d ulboralabs/cache sh\n\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fulbora%2Fulboracacheservice","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fulbora%2Fulboracacheservice","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fulbora%2Fulboracacheservice/lists"}