Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张磊
/
FileStorageBeego
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
b64e70e7
authored
2014-01-10 18:31:15 +0800
by
Pengfei Xue
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
use connection pool for redis cache
1 parent
844412c3
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
112 deletions
cache/redis.go
cache/redis.go
View file @
b64e70e
...
...
@@ -3,7 +3,8 @@ package cache
import
(
"encoding/json"
"errors"
"io"
"sync"
"time"
"github.com/beego/redigo/redis"
)
...
...
@@ -15,9 +16,10 @@ var (
// Redis cache adapter.
type
RedisCache
struct
{
c
redis
.
Conn
p
*
redis
.
Pool
// redis connection pool
conninfo
string
key
string
mu
sync
.
Mutex
}
// create new redis cache with default collection name.
...
...
@@ -25,23 +27,17 @@ func NewRedisCache() *RedisCache {
return
&
RedisCache
{
key
:
DefaultKey
}
}
// Get cache from redis.
func
(
rc
*
RedisCache
)
Get
(
key
string
)
interface
{}
{
if
rc
.
c
==
nil
{
var
err
error
rc
.
c
,
err
=
rc
.
connectInit
()
if
err
!=
nil
{
return
nil
}
}
// actually do the redis cmds
func
(
rc
*
RedisCache
)
do
(
commandName
string
,
args
...
interface
{})
(
reply
interface
{},
err
error
)
{
c
:=
rc
.
p
.
Get
()
defer
c
.
Close
()
v
,
err
:=
rc
.
c
.
Do
(
"HGET"
,
rc
.
key
,
key
)
// write to closed socket, reset rc.c to nil
if
err
==
io
.
EOF
{
rc
.
c
=
nil
return
nil
}
return
c
.
Do
(
commandName
,
args
...
)
}
// Get cache from redis.
func
(
rc
*
RedisCache
)
Get
(
key
string
)
interface
{}
{
v
,
err
:=
rc
.
do
(
"HGET"
,
rc
.
key
,
key
)
if
err
!=
nil
{
return
nil
}
...
...
@@ -52,61 +48,19 @@ func (rc *RedisCache) Get(key string) interface{} {
// put cache to redis.
// timeout is ignored.
func
(
rc
*
RedisCache
)
Put
(
key
string
,
val
interface
{},
timeout
int64
)
error
{
if
rc
.
c
==
nil
{
var
err
error
rc
.
c
,
err
=
rc
.
connectInit
()
if
err
!=
nil
{
return
err
}
}
_
,
err
:=
rc
.
c
.
Do
(
"HSET"
,
rc
.
key
,
key
,
val
)
// write to closed socket, reset rc.c to nil
if
err
==
io
.
EOF
{
rc
.
c
=
nil
return
err
}
_
,
err
:=
rc
.
do
(
"HSET"
,
rc
.
key
,
key
,
val
)
return
err
}
// delete cache in redis.
func
(
rc
*
RedisCache
)
Delete
(
key
string
)
error
{
if
rc
.
c
==
nil
{
var
err
error
rc
.
c
,
err
=
rc
.
connectInit
()
if
err
!=
nil
{
return
err
}
}
_
,
err
:=
rc
.
c
.
Do
(
"HDEL"
,
rc
.
key
,
key
)
// write to closed socket, reset rc.c to nil
if
err
==
io
.
EOF
{
rc
.
c
=
nil
return
err
}
_
,
err
:=
rc
.
do
(
"HDEL"
,
rc
.
key
,
key
)
return
err
}
// check cache exist in redis.
func
(
rc
*
RedisCache
)
IsExist
(
key
string
)
bool
{
if
rc
.
c
==
nil
{
var
err
error
rc
.
c
,
err
=
rc
.
connectInit
()
if
err
!=
nil
{
return
false
}
}
v
,
err
:=
redis
.
Bool
(
rc
.
c
.
Do
(
"HEXISTS"
,
rc
.
key
,
key
))
// write to closed socket, reset rc.c to nil
if
err
==
io
.
EOF
{
rc
.
c
=
nil
return
false
}
v
,
err
:=
redis
.
Bool
(
rc
.
do
(
"HEXISTS"
,
rc
.
key
,
key
))
if
err
!=
nil
{
return
false
}
...
...
@@ -116,59 +70,19 @@ func (rc *RedisCache) IsExist(key string) bool {
// increase counter in redis.
func
(
rc
*
RedisCache
)
Incr
(
key
string
)
error
{
if
rc
.
c
==
nil
{
var
err
error
rc
.
c
,
err
=
rc
.
connectInit
()
if
err
!=
nil
{
return
err
}
}
_
,
err
:=
redis
.
Bool
(
rc
.
c
.
Do
(
"HINCRBY"
,
rc
.
key
,
key
,
1
))
// write to closed socket
if
err
==
io
.
EOF
{
rc
.
c
=
nil
}
_
,
err
:=
redis
.
Bool
(
rc
.
do
(
"HINCRBY"
,
rc
.
key
,
key
,
1
))
return
err
}
// decrease counter in redis.
func
(
rc
*
RedisCache
)
Decr
(
key
string
)
error
{
if
rc
.
c
==
nil
{
var
err
error
rc
.
c
,
err
=
rc
.
connectInit
()
if
err
!=
nil
{
return
err
}
}
_
,
err
:=
redis
.
Bool
(
rc
.
c
.
Do
(
"HINCRBY"
,
rc
.
key
,
key
,
-
1
))
// write to closed socket
if
err
==
io
.
EOF
{
rc
.
c
=
nil
}
_
,
err
:=
redis
.
Bool
(
rc
.
do
(
"HINCRBY"
,
rc
.
key
,
key
,
-
1
))
return
err
}
// clean all cache in redis. delete this redis collection.
func
(
rc
*
RedisCache
)
ClearAll
()
error
{
if
rc
.
c
==
nil
{
var
err
error
rc
.
c
,
err
=
rc
.
connectInit
()
if
err
!=
nil
{
return
err
}
}
_
,
err
:=
rc
.
c
.
Do
(
"DEL"
,
rc
.
key
)
// write to closed socket
if
err
==
io
.
EOF
{
rc
.
c
=
nil
}
_
,
err
:=
rc
.
do
(
"DEL"
,
rc
.
key
)
return
err
}
...
...
@@ -179,32 +93,46 @@ func (rc *RedisCache) ClearAll() error {
func
(
rc
*
RedisCache
)
StartAndGC
(
config
string
)
error
{
var
cf
map
[
string
]
string
json
.
Unmarshal
([]
byte
(
config
),
&
cf
)
if
_
,
ok
:=
cf
[
"key"
];
!
ok
{
cf
[
"key"
]
=
DefaultKey
}
if
_
,
ok
:=
cf
[
"conn"
];
!
ok
{
return
errors
.
New
(
"config has no conn key"
)
}
rc
.
key
=
cf
[
"key"
]
rc
.
conninfo
=
cf
[
"conn"
]
var
err
error
rc
.
c
,
err
=
rc
.
connectInit
()
if
err
!=
nil
{
rc
.
connectInit
()
c
:=
rc
.
p
.
Get
()
defer
c
.
Close
()
if
err
:=
c
.
Err
();
err
!=
nil
{
return
err
}
if
rc
.
c
==
nil
{
return
errors
.
New
(
"dial tcp conn error"
)
}
return
nil
}
// connect to redis.
func
(
rc
*
RedisCache
)
connectInit
()
(
redis
.
Conn
,
error
)
{
func
(
rc
*
RedisCache
)
connectInit
()
{
rc
.
mu
.
Lock
()
// initialize a new pool
rc
.
p
=
&
redis
.
Pool
{
MaxIdle
:
3
,
IdleTimeout
:
180
*
time
.
Second
,
Dial
:
func
()
(
redis
.
Conn
,
error
)
{
c
,
err
:=
redis
.
Dial
(
"tcp"
,
rc
.
conninfo
)
if
err
!=
nil
{
return
nil
,
err
}
return
c
,
nil
},
}
rc
.
mu
.
Unlock
()
}
func
init
()
{
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment