Registry /
messaging / richardknop-machinery-v2
Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
machinery
✓ github.com/RichardKnop/machinery/v2
Initialize a Machinery server with Redis broker
package main
import (
"fmt"
"github.com/RichardKnop/machinery/v2"
"github.com/RichardKnop/machinery/v2/config"
)
func main() {
cnf := &config.Config{
Broker: "redis://localhost:6379",
ResultBackend: "redis://localhost:6379",
}
server, err := machinery.NewServer(cnf)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(server)
}
Debug
Known issues
No known issues recorded.
Upgrade
Version history
2.0.16latest on pkg.go.dev
Audit
Dependencies
No dependency data recorded yet.