diff --git a/lrucache/benchmark/vcache.go b/lrucache/benchmark/vcache.go old mode 100644 new mode 100755 index 3f9796d..60d851f --- a/lrucache/benchmark/vcache.go +++ b/lrucache/benchmark/vcache.go @@ -3,7 +3,7 @@ package main import ( - vcache "code.google.com/p/vitess/go/cache" + vcache "github.com/youtube/vitess/go/cache" ) type VCache struct { @@ -12,7 +12,7 @@ type VCache struct { func NewVCache(capacity uint64) *VCache { return &VCache{ - LRUCache: *vcache.NewLRUCache(capacity), + LRUCache: *vcache.NewLRUCache(int64(capacity)), } }