{"id":36483946,"url":"https://github.com/getsetdb/getsetdb","last_synced_at":"2026-01-14T13:09:33.506Z","repository":{"id":57587069,"uuid":"162956012","full_name":"getsetdb/getsetdb","owner":"getsetdb","description":"a simple and lightweight key value store written in Go","archived":false,"fork":false,"pushed_at":"2019-06-16T07:36:17.000Z","size":6270,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-12T03:09:44.389Z","etag":null,"topics":["database","database-server","go","golang","nosql","nosql-database"],"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/getsetdb.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":"2018-12-24T06:04:26.000Z","updated_at":"2025-03-24T07:37:05.000Z","dependencies_parsed_at":"2022-09-26T19:33:19.296Z","dependency_job_id":null,"html_url":"https://github.com/getsetdb/getsetdb","commit_stats":null,"previous_names":["mentix02/getsetdb"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/getsetdb/getsetdb","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsetdb%2Fgetsetdb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsetdb%2Fgetsetdb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsetdb%2Fgetsetdb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsetdb%2Fgetsetdb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/getsetdb","download_url":"https://codeload.github.com/getsetdb/getsetdb/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsetdb%2Fgetsetdb/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28420826,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T10:47:48.104Z","status":"ssl_error","status_checked_at":"2026-01-14T10:46:19.031Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["database","database-server","go","golang","nosql","nosql-database"],"created_at":"2026-01-12T01:07:49.539Z","updated_at":"2026-01-14T13:09:33.491Z","avatar_url":"https://github.com/getsetdb.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GetSetDB\nAn extremely optimised and lightweight NoSQL in memory database system written in Go.\n\n### Systems Supported \n- Debian / Ubuntu 16.04 and up\n- Fedora / Red Hat Enterprise Linux\n- MacOS \n\n*note* - Windows support not determined as it's not been tested\n\n### Installation\n\nTo see the instructions for building from source, [refer this](#building-from-source).\n\n- for Ubuntu / Debian users - \n    - option 1 - download a pre-built binary and place it in `/usr/bin/`\n    - option 2 - download a pre-built `.deb` package from here - [getsetdb-v1.deb](https://github.com/getsetdb/getsetdb/raw/master/packages/debian/getsetdb-v1.deb)\n- for Fedora / Red Hat Enterprise Linux users - \n    - download a pre-built binary and place it in `/usr/bin/`\n- for MacOS users\n    - download a pre-built binary and place it in `/usr/bin/`\n    \n### Usage\n\nSince GetSetDB is an extremely lightweight database, [A Tour of GetSetDB](https://medium.com/@mentix02/a-tour-of-getsetdb-8716c39e354d) should be enough for most people to get up and running with it.\n\nIf you wish to use it in conjunction with a programming language, please look out for [upcoming connectors for different languages](#connectors-in-development).\n\n### Documentation\n\nFor a tutorial that covers everything from the structuring of GetSetDB to the syntax for the commands, check out [A Tour of GetSetDB](https://medium.com/@mentix02/a-tour-of-getsetdb-8716c39e354d)\n\nAPI documentation for reference will be coming soon.\n\n### Building From Source\n\nGetSetDB is written purely in Go, so you need to have Go installed on your system to build it from souce. [Install it from here](https://golang.org/doc/install). Next, configure your `$GOPATH` - by default, it is your `home` directory. \n\n```sh\n$ mkdir -p ~/go/src/\n$ go get github.com/getsetdb/getsetdb\n```\n\nThis should automatically build GetSetDB for you and will place the executable binary in `~/go/bin/`. To run it from anywhere, you'll have to add this binary to your `$PATH`. To do so, run the following - \n\n```sh\n$ echo 'export PATH=\"$HOME/go/bin:$PATH\"' \u003e\u003e ~/.bashrc\n```\n\n### Developing\n\nIf you're a developer looking for documentation on making connectors for a language that [GetSetDB doesn't already support](#connectors-in-development) , please be paitent - documentation for that will be coming soon.\n\nSame goes for contributing to the database itself.\n\n### Connectors In Development\n1. [Python](https://github.com/getsetdb/getsetpy)\n2. [Go](https://github.com/getsetdb/getsetgo)\n3. [Ruby](https://github.com/getsetdb/getsetrub)\n4. [C++](https://github.com/getsetdb/getsetc)\n5. [Perl](https://github.com/getsetdb/getsetpl)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgetsetdb%2Fgetsetdb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgetsetdb%2Fgetsetdb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgetsetdb%2Fgetsetdb/lists"}