func PushKeyValNowTSDS(key string, val string) bool {
	levigoTSDS.PushNowTSDS(key, val, db)
	return true
}
示例#2
0
/* Push a key namespace-d with current time */
func PushKeyValNowTSDS(key string, val string) bool {
	if levigoTSDS.PushNowTSDS(key, val, db) == "" {
		return false
	}
	return true
}