File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 11����ʷ�б���
22
33-----------------------------------------------------------------------
4+ 394) 2015.12.29
5+ 394.1) bugfix: redis_key ���е� type ����������һ�� hash ����
6+
47393) 2015.12.28
58393.1) bugfix: �� xml1, xml2 �еĺ��� getFirstElementByTag �ڲ�û���ж� NULL
69393.2) bugfix: ȡ���� http_request ���е� acl_assert(client_) �����ж�
Original file line number Diff line number Diff line change @@ -418,6 +418,8 @@ redis_key_t redis_key::type(const char* key)
418418 return REDIS_KEY_NONE;
419419 else if (strcasecmp (ptr, " string" ) == 0 )
420420 return REDIS_KEY_STRING;
421+ else if (strcasecmp (ptr, " hash" ) == 0 )
422+ return REDIS_KEY_HASH;
421423 else if (strcasecmp (ptr, " list" ) == 0 )
422424 return REDIS_KEY_LIST;
423425 else if (strcasecmp (ptr, " set" ) == 0 )
You can’t perform that action at this time.
0 commit comments