https://github.com/hermanbanken/datastore-extensions
https://github.com/hermanbanken/datastore-extensions
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hermanbanken/datastore-extensions
- Owner: hermanbanken
- Created: 2024-03-25T14:58:32.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-25T16:46:29.000Z (over 1 year ago)
- Last Synced: 2024-12-27T18:42:02.269Z (10 months ago)
- Language: Go
- Size: 22.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Datastore Extensions for Go
This library extends the Go Google Cloud Datastore library with lower-level functionality that is only exposed on the gRPC interface.When to use:
1. High performance use cases where every 10ms counts
When not to use:
1. Hands-off deployments that you expect to work in 10 years without any maintenance.
2. Low-staffed teams that do not have the bandwidth to investigate and fix OSS libaries (that they use) themselves.Two examples:
1. Enforce relationship still exists between two entities retrieved separately - [example/parentchild](./example/parentchild)
1. Expose `version` externally to allow **optimistic transactions** spanning apps/clients - [example/externalzookie](./example/externalzookie)