diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index ad759b1..88e09a6 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -5,6 +5,7 @@
+
@@ -27,11 +28,11 @@
-
+
-
-
+
+
@@ -57,11 +58,11 @@
-
+
-
+
@@ -132,8 +133,8 @@
-
+
@@ -177,23 +178,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -402,7 +386,7 @@
-
+
1500458878821
@@ -597,7 +581,7 @@
-
+
@@ -610,6 +594,7 @@
+
@@ -619,7 +604,7 @@
-
+
@@ -701,14 +686,6 @@
-
-
-
-
-
-
-
-
@@ -720,7 +697,15 @@
-
+
+
+
+
+
+
+
+
+
diff --git a/cache_redis.go b/cache_redis.go
index 717c713..e35265a 100644
--- a/cache_redis.go
+++ b/cache_redis.go
@@ -3,17 +3,18 @@ package hotime
import (
"time"
"sync"
+ "github.com/garyburd/redigo/redis"
)
type CacheRedis struct {
Time int64
- Map
+ redis.Conn
contextBase
}
func (this *CacheRedis) Cache(key string, data ...interface{}) *Obj {
-
+ redis.Dial()
reData:= &Obj{}
diff --git a/example/main.go b/example/main.go
index cd93c01..24818f9 100644
--- a/example/main.go
+++ b/example/main.go
@@ -6,10 +6,11 @@ import (
_ "github.com/go-sql-driver/mysql"
"go.hoteas.com/hotime"
"golang.org/x/net/websocket"
+ "github.com/garyburd/redigo/redis"
)
func main() {
-
+ hotime.CacheRedis{nil,redis.Dial()}
appIns := hotime.Application{}
i := 0