{"id":18972373,"url":"https://github.com/wuriyanto48/kece","last_synced_at":"2025-04-19T16:13:06.904Z","repository":{"id":57598573,"uuid":"167930218","full_name":"wuriyanto48/kece","owner":"wuriyanto48","description":"[In Development] An Experimental distributed Key Value Store written in pure Go","archived":false,"fork":false,"pushed_at":"2020-12-26T11:36:10.000Z","size":108,"stargazers_count":9,"open_issues_count":0,"forks_count":1,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-03-29T09:51:17.997Z","etag":null,"topics":["cache","caching","go","golang","inmemory","inmemory-db","kece","keyvalue","keyvaluestore"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wuriyanto48.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":"2019-01-28T08:57:58.000Z","updated_at":"2024-01-18T05:23:34.000Z","dependencies_parsed_at":"2022-08-30T01:51:12.439Z","dependency_job_id":null,"html_url":"https://github.com/wuriyanto48/kece","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wuriyanto48%2Fkece","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wuriyanto48%2Fkece/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wuriyanto48%2Fkece/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wuriyanto48%2Fkece/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wuriyanto48","download_url":"https://codeload.github.com/wuriyanto48/kece/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249223935,"owners_count":21232833,"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","caching","go","golang","inmemory","inmemory-db","kece","keyvalue","keyvaluestore"],"created_at":"2024-11-08T15:08:19.254Z","updated_at":"2025-04-16T09:33:02.245Z","avatar_url":"https://github.com/wuriyanto48.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n[\u003cimg src=\"./assets/logo-kece-readme.png\" width=\"300\"\u003e](https://github.com/wuriyanto48/kece)\n\u003cbr/\u003e\u003cbr/\u003e\n[![Build Status](https://travis-ci.org/wuriyanto48/kece.svg?branch=master)](https://travis-ci.org/wuriyanto48/kece)\n\u003c/div\u003e\n\n### What is kece?\nAn Experimental distributed Key Value Store written in Go\n\n\n### TODO\n- Add Pub Sub feature\n- Protocol ? :D\n- Support multiple datatype to store (now `Kece` only support simple string)\n\n### Usage\n- \u003cb\u003eBuild binary from source\u003c/b\u003e\n```shell\n$ git clone https://github.com/wuriyanto48/kece.git\n\n$ make build\n\n$ kece --version\n```\n\n- \u003cb\u003eRun `kece` server\u003c/b\u003e\n\n    if `port flag` is not present, `kece` will using `9000` as the default port\n```shell\n$ kece -port 8000\n\t\t)\n\t( /(    (         (\n\t)\\())  ))\\  (    ))\\\n\t((_)\\  /((_) )\\  /((_)\n\t| |(_)(_))  ((_)(_))\n\t| / / / -_)/ _| / -_)\n\t|_\\_\\ \\___|\\__| \\___|\n\n\nlog -\u003e kece server listen on port : 8000\n```\n\n- There are two type of data structure for store data, `HashMap` and `Binary Tree` (default using `HashMap`). For choose data structure type, add flag `-ds`.\n```shell\n$ kece -port 8000 -ds bt\n$ kece -port 8000 -ds hashmap\n```\n\n- \u003cb\u003eStore simple data\u003c/b\u003e\n\n    you can use either `nc` or `telnet` as client\n```shell\n$ nc localhost 8000\n$\n$ SET 1 wuriyanto\n$ +OK\n$\n$ SET *BJE* hello\n$ +OK\n$\n$ GET 1\n$ wurianto\n$\n$ GET *BJE*\n$ hello\n$\n$ DEL 1\n$ +OK\n$\n$ SET cache \"this is cache value with lifetime 20 seconds\" 20\n$ +OK\n```\n\n- \u003cb\u003eAuth mechanism\u003c/b\u003e\n\n    if you want to use `Auth` on your `kece server`, simply add `-auth your-server-password` when start your server\n```shell\n$ kece -port 8000 -auth my-secret\n\t\t)\n\t( /(    (         (\n\t)\\())  ))\\  (    ))\\\n\t((_)\\  /((_) )\\  /((_)\n\t| |(_)(_))  ((_)(_))\n\t| / / / -_)/ _| / -_)\n\t|_\\_\\ \\___|\\__| \\___|\n\nlog -\u003e kece server listen on port : 8000\n```\n\n    send auth to server\n```shell\n$ AUTH my-secret\n$ +OK\n$\n```\n\n- \u003cb\u003eAccess KECE from code\u003c/b\u003e\n\n    follow this repository https://github.com/Bhinneka/kece-client-examples to see example how to access `kece` from specific language\n\n\n#\n\n### Author\nWuriyanto https://github.com/wuriyanto48\n\n\n### Contibutions PR\nBefore creating PR make sure your PR is passed.\nUse the linter first, then commit and push\n\n```\n$ make lint-prepare\n\n$ make lint\n\n$ make test\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwuriyanto48%2Fkece","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwuriyanto48%2Fkece","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwuriyanto48%2Fkece/lists"}