Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Hel10-Web/Databasetools
/ redisString
Function
redisString
pac/redis_string.go:58–69 ·
view source on GitHub ↗
Redis 字符串
(i interface{})
Source
from the content-addressed store, hash-verified
56
57
// Redis 字符串
58
func
redisString(i
interface
{}) string {
59
switch
v := i.(
type
) {
60
case
[]
interface
{}:
61
s :=
""
62
for
_, i :=
range
v {
63
s += i.(string) +
" "
64
}
65
return
s
66
}
67
return
""
68
69
}
Callers
1
redisVersion
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected