From 8a465e032814d01cf230470b1366fe3df1b9f6e5 Mon Sep 17 00:00:00 2001 From: myself659 Date: Mon, 25 Jul 2016 00:01:00 -0700 Subject: [PATCH] change import --- lrucache/benchmark/vcache.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) mode change 100644 => 100755 lrucache/benchmark/vcache.go 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)), } }