Skip to content

Instantly share code, notes, and snippets.

View fakihariefnoto's full-sized avatar
😌
on fire

Fakih Arief Noto fakihariefnoto

😌
on fire
View GitHub Profile
@codemartial
codemartial / redis-worker.go
Created April 17, 2018 05:53
A worker pool for executing Redis commands using redigo
package main
import (
"fmt"
"github.com/gomodule/redigo/redis"
"sync"
"time"
)
var rconns *redis.Pool