本文整理汇总了C++中credisclient::VecString::size方法的典型用法代码示例。如果您正苦于以下问题:C++ VecString::size方法的具体用法?C++ VecString::size怎么用?C++ VecString::size使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类credisclient::VecString
的用法示例。
在下文中一共展示了VecString::size方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: stringToVecString
uint64_t CRedisClient::stringToVecString(string& str, CRedisClient::VecString& vec)
{
uint64_t i=0;
uint64_t len=str.length();
uint64_t posStart=0;
while(i<len)
{
if (str[i]=='\n')
{
vec.push_back(str.substr(posStart,i-posStart));
posStart=i+1;
}
++i;
}
return vec.size();
}
示例2: hkeys
uint64_t CRedisClient::hkeys(const string &key, CRedisClient::VecString &values)
{
CResult result;
hkeys( key, result );
ReplyType type = result.getType();
if ( REDIS_REPLY_ERROR == type )
{
throw ReplyErr( result.getErrorString() );
}else if ( REDIS_REPLY_ARRAY != type )
{
throw ProtocolErr("HKEYS: data recved is not arry");
}
_getValueFromArry( result.getArry(), values );
return values.size();
}
示例3: hvals
uint64_t CRedisClient::hvals(const string &key, CRedisClient::VecString &values)
{
CResult result;
hvals( key, result );
ReplyType type = result.getType();
if ( REDIS_REPLY_ERROR == type )
{
throw ReplyErr( result.getErrorString() );
}else if ( REDIS_REPLY_ARRAY != type )
{
throw ProtocolErr( "HVALS: data recved is not arry");
}
CResult::ListCResult::const_iterator it = result.getArry().begin();
CResult::ListCResult::const_iterator end = result.getArry().end();
for ( ; it != end; ++it )
{
values.push_back( static_cast<string>(*it) );
}
return values.size();
}