Exemplo n.º 1
0
func PushKeyValNowTSDS(key string, val string) bool {
	levigoTSDS.PushNowTSDS(key, val, db)
	return true
}
Exemplo n.º 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
}