Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/selfup/horde
Turn cluster nodes into a Horde and let them communicate flawlessly in distributed fashion!
https://github.com/selfup/horde
distributed go swarm-cluster
Last synced: about 1 month ago
JSON representation
Turn cluster nodes into a Horde and let them communicate flawlessly in distributed fashion!
- Host: GitHub
- URL: https://github.com/selfup/horde
- Owner: selfup
- License: mit
- Created: 2018-10-02T03:40:40.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-09T05:11:57.000Z (almost 6 years ago)
- Last Synced: 2024-10-20T07:34:21.365Z (3 months ago)
- Topics: distributed, go, swarm-cluster
- Language: Go
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Horde
Masterless node tracker.
### What is this for?
To have nodes talk to eachother and be aware of eachother in realtime :rocket:
Think EPMD in erlang as a library for your go web apps :tada:
### TODO
All of it :pray:
### Example (very early API)
```go
package mainimport (
"fmt"
"net/http""github.com/selfup/horde"
)func main() {
hordeManager := horde.Boot()res := hordeManager.Ping()
fmt.Println(res)
http.ListenAndServe(":8080", nil)
}```