mirror of
http://github.com/valkey-io/valkey
synced 2024-11-22 00:52:38 +00:00
47 lines
2.0 KiB
HTML
47 lines
2.0 KiB
HTML
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
|
|
<html>
|
|
<head>
|
|
<link type="text/css" rel="stylesheet" href="style.css" />
|
|
</head>
|
|
<body>
|
|
<div id="page">
|
|
|
|
<div id='header'>
|
|
<a href="index.html">
|
|
<img style="border:none" alt="Redis Documentation" src="redis.png">
|
|
</a>
|
|
</div>
|
|
|
|
<div id="pagecontent">
|
|
<div class="index">
|
|
<!-- This is a (PRE) block. Make sure it's left aligned or your toc title will be off. -->
|
|
<b>TypeCommand: Contents</b><br> <a href="#TYPE _key_">TYPE _key_</a><br> <a href="#Return value">Return value</a><br> <a href="#See also">See also</a>
|
|
</div>
|
|
|
|
<h1 class="wikiname">TypeCommand</h1>
|
|
|
|
<div class="summary">
|
|
|
|
</div>
|
|
|
|
<div class="narrow">
|
|
#sidebar <a href="GenericCommandsSidebar.html">GenericCommandsSidebar</a><h1><a name="TYPE _key_">TYPE _key_</a></h1>
|
|
<i>Time complexity: O(1)</i><blockquote>Return the type of the value stored at <i>key</i> in form of astring. The type can be one of "none", "string", "list", "set"."none" is returned if the key does not exist.</blockquote>
|
|
<h2><a name="Return value">Return value</a></h2><a href="ReplyTypes.html">Status code reply</a>, specifically:<br/><br/><pre class="codeblock python" name="code">
|
|
"none" if the key does not exist
|
|
"string" if the key contains a String value
|
|
"list" if the key contains a List value
|
|
"set" if the key contains a Set value
|
|
"zset" if the key contains a Sorted Set value
|
|
"hash" if the key contains a Hash value
|
|
</pre><h2><a name="See also">See also</a></h2>
|
|
<ul><li> <a href="DataTypes.html">Redis Data Types</a></li></ul>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|