Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/houzuoguo/tiedot
A rudimentary implementation of a basic document (NoSQL) database in Go
https://github.com/houzuoguo/tiedot
database db document-database go golang nosql tiedot
Last synced: 6 days ago
JSON representation
A rudimentary implementation of a basic document (NoSQL) database in Go
- Host: GitHub
- URL: https://github.com/houzuoguo/tiedot
- Owner: HouzuoGuo
- License: bsd-2-clause
- Created: 2013-05-26T10:03:49.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2021-09-05T17:47:27.000Z (over 3 years ago)
- Last Synced: 2024-10-29T15:04:32.839Z (3 months ago)
- Topics: database, db, document-database, go, golang, nosql, tiedot
- Language: Go
- Homepage:
- Size: 7.18 MB
- Stars: 2,724
- Watchers: 156
- Forks: 257
- Open Issues: 27
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
2021-09-05: thanks for evaluating tiedot! The project started as a short programming exercise and I am very grateful for the small user base it has received. I am afraid the project has been dormant since 2016, the feature set is minimal and lacking for a modern application. Please consider other embedded DB engine alternatives. In the meanwhile, check out this actively maintained open source project of mine: laitos - Top geek's chindogu.
tiedot
Keywords: Golang, go, document database, NoSQL, JSON
### tiedot - Your NoSQL database powered by Golang
tiedot is a document database engine that uses __JSON__ as document notation; it has a powerful query processor that supports advanced set operations; it can be __embedded__ into your program, or run a stand-alone server using __HTTP__ for an API. It runs on *nix and Windows operating systems.
tiedot has fault-tolerant data structures that put your data safety *first*, while easily scales to 4+ CPU cores.
> tiedot has very stable performance, even with millions of records! It consistently achieves high throughput - swallow more than 120k records or 80k complicated queries per second with confidence.
### Get tiedot!
tiedot is distributed under the [Simplified BSD license][Contributors and License].
The newest version 3.4 comes with general performance and compatibility improvements. Find out more in [releases](https://github.com/HouzuoGuo/tiedot/releases).
### Running in Docker
Run tiedot with help from [docker](https://docs.docker.com/engine/installation/) and [docker compose](https://docs.docker.com/compose/install/):$ docker-compose build
$ docker-compose up -dTo view the logs:
$ docker-compose logs
### References
- [Tutorial: tiedot in 10 minutes]
- [API reference and embedded usage]
- [Limitations]... and more
- [Performance tuning and benchmarks]
- [Data structures]
- [Query processor and index]
- [Concurrency and networking]### Contributions welcome!
tiedot is a very small project in the large open source community - it is growing fast thanks to the 800+ stars and watchers, as well as many contributors for their feedback, comments, ideas and code. Your contribution matters a lot!Pull requests/forks all welcome, and please share your thoughts, questions and feature requests in [Issues] section.
Let me know what you think about tiedot, I'd love to hear from you! Please [Email me], follow my [Twitter] and [blog].
The Go gopher was designed by Renee French. (http://reneefrench.blogspot.com/).
The Go gopher is covered by the [Creative Commons Attribution 3.0][Creative Commons Attribution 3.0] license.[Tutorial: tiedot in 10 minutes]: https://github.com/HouzuoGuo/tiedot/wiki/Tutorial
[API reference and embedded usage]: https://github.com/HouzuoGuo/tiedot/wiki/API-reference-and-embedded-usage
[Version History]: https://github.com/HouzuoGuo/tiedot/wiki/Version-History
[Data structures]: https://github.com/HouzuoGuo/tiedot/wiki/Data-structures
[Query processor and index]: https://github.com/HouzuoGuo/tiedot/wiki/Query-processor-and-index
[Concurrency and networking]: https://github.com/HouzuoGuo/tiedot/wiki/Concurrency-and-networking
[Performance tuning and benchmarks]: https://github.com/HouzuoGuo/tiedot/wiki/Performance-tuning-and-benchmarks
[Limitations]: https://github.com/HouzuoGuo/tiedot/wiki/Limitations
[Email me]: mailto:[email protected]
[Twitter]: https://twitter.com/hzguo
[blog]: http://allstarnix.blogspot.com.au
[Issues]: https://github.com/HouzuoGuo/tiedot/issues
[Contributors and License]: https://github.com/HouzuoGuo/tiedot/wiki/Contributors-and-License
[Creative Commons Attribution 3.0]: http://creativecommons.org/licenses/by/3.0