Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update for new import path
  • Loading branch information
garyburd committed Mar 14, 2018
1 parent a7327d8 commit 30da9cb
Show file tree
Hide file tree
Showing 18 changed files with 34 additions and 34 deletions.
26 changes: 13 additions & 13 deletions README.markdown
@@ -1,34 +1,34 @@
Redigo
======

[![Build Status](https://travis-ci.org/garyburd/redigo.svg?branch=master)](https://travis-ci.org/garyburd/redigo)
[![GoDoc](https://godoc.org/github.com/garyburd/redigo/redis?status.svg)](https://godoc.org/github.com/garyburd/redigo/redis)
[![Build Status](https://travis-ci.org/gomodule/redigo.svg?branch=master)](https://travis-ci.org/gomodule/redigo)
[![GoDoc](https://godoc.org/github.com/gomodule/redigo/redis?status.svg)](https://godoc.org/github.com/gomodule/redigo/redis)

Redigo is a [Go](http://golang.org/) client for the [Redis](http://redis.io/) database.

Features
-------

* A [Print-like](http://godoc.org/github.com/garyburd/redigo/redis#hdr-Executing_Commands) API with support for all Redis commands.
* [Pipelining](http://godoc.org/github.com/garyburd/redigo/redis#hdr-Pipelining), including pipelined transactions.
* [Publish/Subscribe](http://godoc.org/github.com/garyburd/redigo/redis#hdr-Publish_and_Subscribe).
* [Connection pooling](http://godoc.org/github.com/garyburd/redigo/redis#Pool).
* [Script helper type](http://godoc.org/github.com/garyburd/redigo/redis#Script) with optimistic use of EVALSHA.
* [Helper functions](http://godoc.org/github.com/garyburd/redigo/redis#hdr-Reply_Helpers) for working with command replies.
* A [Print-like](http://godoc.org/github.com/gomodule/redigo/redis#hdr-Executing_Commands) API with support for all Redis commands.
* [Pipelining](http://godoc.org/github.com/gomodule/redigo/redis#hdr-Pipelining), including pipelined transactions.
* [Publish/Subscribe](http://godoc.org/github.com/gomodule/redigo/redis#hdr-Publish_and_Subscribe).
* [Connection pooling](http://godoc.org/github.com/gomodule/redigo/redis#Pool).
* [Script helper type](http://godoc.org/github.com/gomodule/redigo/redis#Script) with optimistic use of EVALSHA.
* [Helper functions](http://godoc.org/github.com/gomodule/redigo/redis#hdr-Reply_Helpers) for working with command replies.

Documentation
-------------

- [API Reference](http://godoc.org/github.com/garyburd/redigo/redis)
- [FAQ](https://github.com/garyburd/redigo/wiki/FAQ)
- [Examples](https://godoc.org/github.com/garyburd/redigo/redis#pkg-examples)
- [API Reference](http://godoc.org/github.com/gomodule/redigo/redis)
- [FAQ](https://github.com/gomodule/redigo/wiki/FAQ)
- [Examples](https://godoc.org/github.com/gomodule/redigo/redis#pkg-examples)

Installation
------------

Install Redigo using the "go get" command:

go get github.com/garyburd/redigo/redis
go get github.com/gomodule/redigo/redis

The Go distribution is Redigo's only dependency.

Expand All @@ -43,7 +43,7 @@ Related Projects
Contributing
------------

See [CONTRIBUTING.md](https://github.com/garyburd/redigo/blob/master/.github/CONTRIBUTING.md).
See [CONTRIBUTING.md](https://github.com/gomodule/redigo/blob/master/.github/CONTRIBUTING.md).

License
-------
Expand Down
2 changes: 1 addition & 1 deletion internal/commandinfo.go
Expand Up @@ -12,7 +12,7 @@
// License for the specific language governing permissions and limitations
// under the License.

package internal // import "github.com/garyburd/redigo/internal"
package internal // import "github.com/gomodule/redigo/internal"

import (
"strings"
Expand Down
2 changes: 1 addition & 1 deletion internal/redistest/testdb.go
Expand Up @@ -19,7 +19,7 @@ import (
"errors"
"time"

"github.com/garyburd/redigo/redis"
"github.com/gomodule/redigo/redis"
)

type testConn struct {
Expand Down
2 changes: 1 addition & 1 deletion redis/conn_test.go
Expand Up @@ -28,7 +28,7 @@ import (
"testing"
"time"

"github.com/garyburd/redigo/redis"
"github.com/gomodule/redigo/redis"
)

type testConn struct {
Expand Down
4 changes: 2 additions & 2 deletions redis/doc.go
Expand Up @@ -14,7 +14,7 @@

// Package redis is a client for the Redis database.
//
// The Redigo FAQ (https://github.com/garyburd/redigo/wiki/FAQ) contains more
// The Redigo FAQ (https://github.com/gomodule/redigo/wiki/FAQ) contains more
// documentation about this package.
//
// Connections
Expand Down Expand Up @@ -174,4 +174,4 @@
// non-recoverable error such as a network error or protocol parsing error. If
// Err() returns a non-nil value, then the connection is not usable and should
// be closed.
package redis // import "github.com/garyburd/redigo/redis"
package redis // import "github.com/gomodule/redigo/redis"
2 changes: 1 addition & 1 deletion redis/pool.go
Expand Up @@ -25,7 +25,7 @@ import (
"sync/atomic"
"time"

"github.com/garyburd/redigo/internal"
"github.com/gomodule/redigo/internal"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion redis/pool17_test.go
Expand Up @@ -20,7 +20,7 @@ import (
"context"
"testing"

"github.com/garyburd/redigo/redis"
"github.com/gomodule/redigo/redis"
)

func TestWaitPoolGetContext(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion redis/pool_test.go
Expand Up @@ -22,7 +22,7 @@ import (
"testing"
"time"

"github.com/garyburd/redigo/redis"
"github.com/gomodule/redigo/redis"
)

type poolTestConn struct {
Expand Down
2 changes: 1 addition & 1 deletion redis/pubsub_example_test.go
Expand Up @@ -21,7 +21,7 @@ import (
"fmt"
"time"

"github.com/garyburd/redigo/redis"
"github.com/gomodule/redigo/redis"
)

// listenPubSubChannels listens for messages on Redis pubsub channels. The
Expand Down
2 changes: 1 addition & 1 deletion redis/pubsub_test.go
Expand Up @@ -19,7 +19,7 @@ import (
"testing"
"time"

"github.com/garyburd/redigo/redis"
"github.com/gomodule/redigo/redis"
)

func expectPushed(t *testing.T, c redis.PubSubConn, message string, expected interface{}) {
Expand Down
2 changes: 1 addition & 1 deletion redis/redis_test.go
Expand Up @@ -18,7 +18,7 @@ import (
"testing"
"time"

"github.com/garyburd/redigo/redis"
"github.com/gomodule/redigo/redis"
)

type timeoutTestConn int
Expand Down
2 changes: 1 addition & 1 deletion redis/reply_test.go
Expand Up @@ -19,7 +19,7 @@ import (
"reflect"
"testing"

"github.com/garyburd/redigo/redis"
"github.com/gomodule/redigo/redis"
)

type valueError struct {
Expand Down
2 changes: 1 addition & 1 deletion redis/scan_test.go
Expand Up @@ -21,7 +21,7 @@ import (
"testing"
"time"

"github.com/garyburd/redigo/redis"
"github.com/gomodule/redigo/redis"
)

type durationScan struct {
Expand Down
2 changes: 1 addition & 1 deletion redis/script_test.go
Expand Up @@ -20,7 +20,7 @@ import (
"testing"
"time"

"github.com/garyburd/redigo/redis"
"github.com/gomodule/redigo/redis"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion redis/zpop_example_test.go
Expand Up @@ -17,7 +17,7 @@ package redis_test
import (
"fmt"

"github.com/garyburd/redigo/redis"
"github.com/gomodule/redigo/redis"
)

// zpop pops a value from the ZSET key using WATCH/MULTI/EXEC commands.
Expand Down
4 changes: 2 additions & 2 deletions redisx/connmux.go
Expand Up @@ -18,8 +18,8 @@ import (
"errors"
"sync"

"github.com/garyburd/redigo/internal"
"github.com/garyburd/redigo/redis"
"github.com/gomodule/redigo/internal"
"github.com/gomodule/redigo/redis"
)

// ConnMux multiplexes one or more connections to a single underlying
Expand Down
6 changes: 3 additions & 3 deletions redisx/connmux_test.go
Expand Up @@ -19,9 +19,9 @@ import (
"sync"
"testing"

"github.com/garyburd/redigo/internal/redistest"
"github.com/garyburd/redigo/redis"
"github.com/garyburd/redigo/redisx"
"github.com/gomodule/redigo/internal/redistest"
"github.com/gomodule/redigo/redis"
"github.com/gomodule/redigo/redisx"
)

func TestConnMux(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion redisx/doc.go
Expand Up @@ -14,4 +14,4 @@

// Package redisx contains experimental features for Redigo. Features in this
// package may be modified or deleted at any time.
package redisx // import "github.com/garyburd/redigo/redisx"
package redisx // import "github.com/gomodule/redigo/redisx"

0 comments on commit 30da9cb

Please sign in to comment.