You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you're attempting to use gocraft/work on a `Redis Cluster` deployment, then you may encounter a `CROSSSLOT Keys in request don't hash to the same slot` error during the execution of the various lua scripts used to manage job data (see [Issue 93](https://github.com/gocraft/work/issues/93#issuecomment-401134340)). The current workaround is to force the keys for an entire `namespace` for a given worker pool on a single node in the cluster using [Redis Hash Tags](https://redis.io/topics/cluster-spec#keys-hash-tags). Using the example above:
146
+
If you're attempting to use gocraft/work on a `Redis Cluster` deployment, then you may encounter a `CROSSSLOT Keys in request don't hash to the same slot` error during the execution of the various lua scripts used to manage job data (see [Issue 93](https://github.com/GetSimpl/work/issues/93#issuecomment-401134340)). The current workaround is to force the keys for an entire `namespace` for a given worker pool on a single node in the cluster using [Redis Hash Tags](https://redis.io/topics/cluster-spec#keys-hash-tags). Using the example above:
147
147
148
148
```go
149
149
funcmain() {
@@ -245,8 +245,8 @@ The web UI provides a view to view the state of your gocraft/work cluster, inspe
245
245
246
246
Building an installing the binary:
247
247
```bash
248
-
go get github.com/gocraft/work/cmd/workwebui
249
-
go install github.com/gocraft/work/cmd/workwebui
248
+
go get github.com/GetSimpl/work/cmd/workwebui
249
+
go install github.com/GetSimpl/work/cmd/workwebui
250
250
```
251
251
252
252
Then, you can run it:
@@ -353,7 +353,7 @@ The benches folder contains various benchmark code. In each case, we enqueue 100
@@ -366,7 +366,7 @@ gocraft offers a toolkit for building web apps. Currently these packages are ava
366
366
* [gocraft/web](https://github.com/gocraft/web) - Go Router + Middleware. Your Contexts.
367
367
* [gocraft/dbr](https://github.com/gocraft/dbr) - Additions to Go's database/sql for super fast performance and convenience.
368
368
* [gocraft/health](https://github.com/gocraft/health) - Instrument your web apps with logging and metrics.
369
-
* [gocraft/work](https://github.com/gocraft/work) - Process background jobs in Go.
369
+
* [gocraft/work](https://github.com/GetSimpl/work) - Process background jobs in Go.
370
370
371
371
These packages were developed by the [engineering team](https://eng.uservoice.com) at [UserVoice](https://www.uservoice.com) and currently power much of its infrastructure and tech stack.
0 commit comments