コード例 #1
0
ファイル: looper.go プロジェクト: darkhelmet/ForrestFire
func AlreadyResent(messageId, email string) bool {
	uri, _ := cache.Get(messageId)
	if uri == "" {
		return false
	}
	v, _ := cache.Get(email + uri)
	return v == Resent
}
コード例 #2
0
ファイル: looper.go プロジェクト: darkhelmet/ForrestFire
func MarkResent(messageId, email string) (uri string) {
	uri, _ = cache.Get(messageId)
	if uri != "" {
		cache.Set(email+uri, Resent, TTL)
	}
	return uri
}
コード例 #3
0
ファイル: tinderizer.go プロジェクト: darkhelmet/ForrestFire
func (a *App) Status(id string) (string, error) {
	return cache.Get(id)
}
コード例 #4
0
ファイル: blacklist.go プロジェクト: darkhelmet/ForrestFire
func IsBlacklisted(thing string) bool {
	value, _ := cache.Get(key(thing))
	return value == Value
}