https://github.com/aclisp/go-zero-side
Go-zero-side is a project to complement go-zero. It provides more practical engineering tools which work seamlessly with go-zero.
https://github.com/aclisp/go-zero-side
go go-zero golang gozero web-framework
Last synced: 6 months ago
JSON representation
Go-zero-side is a project to complement go-zero. It provides more practical engineering tools which work seamlessly with go-zero.
- Host: GitHub
- URL: https://github.com/aclisp/go-zero-side
- Owner: aclisp
- License: mit
- Created: 2024-07-29T10:18:38.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-07T01:28:08.000Z (almost 2 years ago)
- Last Synced: 2025-06-12T01:07:30.606Z (about 1 year ago)
- Topics: go, go-zero, golang, gozero, web-framework
- Language: Go
- Homepage:
- Size: 45.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Go zero side
Go-zero-side is a project to complement go-zero. It provides *more practical engineering tools* which work seamlessly with go-zero.
The packages are:
* `goschedule` A distributed cron job scheduler. It has a simple design to prevent multiple nodes from running the same job without using distributed locks.
* `logz` An xorm logger implement to show SQL by integrating with go-zero logging facility. It also outputs trace-id for SQL logs.
* `xormcache` *Deprecated.* An xorm cache implement using redis as the storage. It is deprecated because a remote cache is not so efficient as xorm's build-in local cache such as memory or leveldb.
* `session` A HTTP session middleware, based on gorilla/sessions but far better than that.
* `router` A customied go-zero/rest/httpx.Router. Currently it creates a fileServingRouter which handles HTTP caching correctly.
* `embedx` handles go template files embedding as well as static files embedding.
* `delayq` defines a general purpose Message struct as the protocol of zeromicro/go-queue/dq. It also propagates trace-id to the queue consumer.