示例#1
0
文件: t_zset.cpp 项目: Alienfeel/ssdb
static std::string filter_score(const Bytes &score){
	int64_t s = score.Int64();
	char buf[32];
	snprintf(buf, sizeof(buf), "%" PRId64 "", s);
	return std::string(buf);
}
示例#2
0
文件: t_zset.cpp 项目: ezhangle/ssdb
static std::string filter_score(const Bytes &score){
	int64_t s = score.Int64();
	return str(s);
}