Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
杨树贤
/
search_server
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
ca9fa80e
authored
Jul 06, 2020
by
huangchengyi
Browse files
Options
_('Browse Files')
Download
Plain Diff
Merge branch 'dev' of
http://119.23.72.7/mushishixian/search_server
into dev
parents
3be929a2
2324582b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
pkg/gredis/redis.go
pkg/gredis/redis.go
View file @
ca9fa80e
...
...
@@ -12,18 +12,20 @@ type ichuntRedis struct {
RedisList
map
[
string
]
*
redis
.
Pool
}
func
(
this
*
ichuntRedis
)
Conn
(
connection
string
)
(
*
redis
.
Pool
){
return
this
.
RedisList
[
connection
]
var
ichuntRedis_
=
&
ichuntRedis
{}
func
Conn
(
connection
string
)
(
*
redis
.
Pool
){
return
ichuntRedis_
.
RedisList
[
connection
]
}
var
writeConn
,
readConn
*
redis
.
Pool
func
Setup
()
(
err
error
)
{
ichuntRedis
:=
&
ichuntRedis
{}
ichuntRedis
.
RedisList
=
make
(
map
[
string
]
*
redis
.
Pool
,
0
)
ichuntRedis_
.
RedisList
=
make
(
map
[
string
]
*
redis
.
Pool
,
0
)
RedisDatabaseMap
:=
config
.
BuildRedisConfgs
()
for
redisKey
,
redisConfig
:=
range
RedisDatabaseMap
{
ichuntRedis
.
RedisList
[
redisKey
],
err
=
getConn
(
redisConfig
.
Host
,
redisConfig
.
Password
)
ichuntRedis
_
.
RedisList
[
redisKey
],
err
=
getConn
(
redisConfig
.
Host
,
redisConfig
.
Password
)
if
err
!=
nil
{
panic
(
err
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
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 comment