no more memcache, go broke for mac 18.1

This commit is contained in:
Bel LaPointe
2022-05-10 06:25:59 -06:00
parent 9914252040
commit cb219e269d
7 changed files with 20 additions and 237 deletions

32
type.go
View File

@@ -7,21 +7,19 @@ import (
type Type int
const (
MAP = Type(iota)
REDIS = Type(iota)
DYNOMITE = Type(iota)
BOLT = Type(iota)
FILES = Type(iota)
COCKROACH = Type(iota)
CACHE = Type(iota)
LEVELDB = Type(iota)
MEMCACHE = Type(iota)
MEMCACHECLUSTER = Type(iota)
MONGO = Type(iota)
MINIO = Type(iota)
RCLONE = Type(iota)
MAPSTREAM = Type(iota)
YAML = Type(iota)
MAP = Type(iota)
REDIS = Type(iota)
DYNOMITE = Type(iota)
BOLT = Type(iota)
FILES = Type(iota)
COCKROACH = Type(iota)
CACHE = Type(iota)
LEVELDB = Type(iota)
MONGO = Type(iota)
MINIO = Type(iota)
RCLONE = Type(iota)
MAPSTREAM = Type(iota)
YAML = Type(iota)
)
func (t Type) String() string {
@@ -50,10 +48,6 @@ func (t Type) String() string {
return "cache"
case LEVELDB:
return "leveldb"
case MEMCACHE:
return "memcache"
case MEMCACHECLUSTER:
return "memcachecluster"
case MONGO:
return "mongo"
}