Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cache.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ import (
"time"
"unsafe"

"github.com/outcaste-io/ristretto/z"
"github.com/dgraph-io/ristretto/z"
"go.uber.org/atomic"
)

Expand Down
2 changes: 1 addition & 1 deletion cache_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"testing"
"time"

"github.com/outcaste-io/ristretto/z"
"github.com/dgraph-io/ristretto/z"
"github.com/stretchr/testify/require"
)

Expand Down
2 changes: 1 addition & 1 deletion contrib/demo/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"runtime"
"unsafe"

"github.com/outcaste-io/ristretto/z"
"github.com/dgraph-io/ristretto/z"
"github.com/dustin/go-humanize"
)

Expand Down
4 changes: 2 additions & 2 deletions contrib/demo/node_allocator.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ package main
import (
"unsafe"

"github.com/outcaste-io/ristretto/z"
"github.com/dgraph-io/ristretto/z"
)

// Defined in node.go.
func init() {
alloc = z.NewAllocator(10 << 20, "demo")
alloc = z.NewAllocator(10<<20, "demo")
}

func newNode(val int) *node {
Expand Down
2 changes: 1 addition & 1 deletion contrib/demo/node_jemalloc.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package main
import (
"unsafe"

"github.com/outcaste-io/ristretto/z"
"github.com/dgraph-io/ristretto/z"
)

func newNode(val int) *node {
Expand Down
2 changes: 1 addition & 1 deletion contrib/memtest/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ import (
"time"
"unsafe"

"github.com/dgraph-io/ristretto/z"
"github.com/dustin/go-humanize"
"github.com/outcaste-io/ristretto/z"
)

type S struct {
Expand Down
2 changes: 1 addition & 1 deletion contrib/memtest/withjemalloc.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package main
import (
"os"

"github.com/outcaste-io/ristretto/z"
"github.com/dgraph-io/ristretto/z"
)

func Calloc(size int) []byte { return z.Calloc(size, "memtest") }
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/outcaste-io/ristretto
module github.com/dgraph-io/ristretto

go 1.12

Expand Down
2 changes: 1 addition & 1 deletion metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"sync"
"sync/atomic"

"github.com/outcaste-io/ristretto/z"
"github.com/dgraph-io/ristretto/z"
)

type metricType int
Expand Down
2 changes: 1 addition & 1 deletion policy.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"sync"
"sync/atomic"

"github.com/outcaste-io/ristretto/z"
"github.com/dgraph-io/ristretto/z"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion store_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"testing"
"time"

"github.com/outcaste-io/ristretto/z"
"github.com/dgraph-io/ristretto/z"
"github.com/stretchr/testify/require"
)

Expand Down
2 changes: 1 addition & 1 deletion stress_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"testing"
"time"

"github.com/outcaste-io/ristretto/sim"
"github.com/dgraph-io/ristretto/sim"
"github.com/stretchr/testify/require"
)

Expand Down
2 changes: 1 addition & 1 deletion z/btree.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
"strings"
"unsafe"

"github.com/outcaste-io/ristretto/z/simd"
"github.com/dgraph-io/ristretto/z/simd"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion z/btree_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
"testing"
"time"

"github.com/outcaste-io/ristretto/z/simd"
"github.com/dgraph-io/ristretto/z/simd"
"github.com/dustin/go-humanize"
"github.com/stretchr/testify/require"
)
Expand Down