{"id":44540,"date":"2024-12-01T13:03:26","date_gmt":"2024-12-01T05:03:26","guid":{"rendered":"https:\/\/fwq.ai\/blog\/44540\/"},"modified":"2024-12-01T13:03:26","modified_gmt":"2024-12-01T05:03:26","slug":"redis%e8%ae%be%e7%bd%aekey%e7%9a%84%e8%bf%87%e6%9c%9f%e6%97%b6%e9%97%b4","status":"publish","type":"post","link":"https:\/\/fwq.ai\/blog\/44540\/","title":{"rendered":"Redis\u8bbe\u7f6ekey\u7684\u8fc7\u671f\u65f6\u95f4"},"content":{"rendered":"<p><b><\/b> <\/p>\n<h1>Redis\u8bbe\u7f6ekey\u7684\u8fc7\u671f\u65f6\u95f4<\/h1>\n<p><span><i><\/i>0\u6d4f\u89c8<\/span><br \/>\n<span style=\"cursor: pointer\"><i><\/i>\u6536\u85cf<\/span> <\/p>\n<p>\u4ece\u73b0\u5728\u5f00\u59cb\uff0c\u52aa\u529b\u5b66\u4e60\u5427\uff01\u672c\u6587<span style=\"color: #FF6600;font-family:\">\u300aRedis\u8bbe\u7f6ekey\u7684\u8fc7\u671f\u65f6\u95f4\u300b<\/span>\u4e3b\u8981\u8bb2\u89e3\u4e86<span style=\"color: #FF6600;font-family:\">Rediskey\u3001\u8fc7\u671f\u65f6\u95f4<\/span>\u7b49\u7b49\u76f8\u5173\u77e5\u8bc6\u70b9\uff0c\u6211\u4f1a\u5728golang\u5b66\u4e60\u7f51\u4e2d\u6301\u7eed\u66f4\u65b0\u76f8\u5173\u7684\u7cfb\u5217\u6587\u7ae0\uff0c\u6b22\u8fce\u5927\u5bb6\u5173\u6ce8\u5e76\u79ef\u6781\u7559\u8a00\u5efa\u8bae\u3002\u4e0b\u9762\u5c31\u5148\u4e00\u8d77\u6765\u770b\u4e00\u4e0b\u672c\u7bc7\u6b63\u6587\u5185\u5bb9\u5427\uff0c\u5e0c\u671b\u80fd\u5e2e\u5230\u4f60\uff01<\/p>\n<p>Redis\u4e2d\u53ef\u4ee5\u8bbe\u7f6e\u6570\u636e\u7684\u8fc7\u671f\u65f6\u95f4\uff0c\u4e00\u65e6\u8fc7\u671f\u81ea\u52a8\u5220\u9664\u6570\u636e\u3002<\/p>\n<p>1.\u8bbe\u7f6e\u8fc7\u671f\u65f6\u95f4 expire<\/p>\n<pre>127.0.0.1:6379&gt; set name\n\"ok\"\n\/\/\u8bbe\u7f6e10s\u540e\u8fc7\u671f\uff0cexpire\u5355\u4f4d\u79d2\n127.0.0.1:6379&gt; expire name 10 \n\/\/\u8bbe\u7f6e10s\u540e\u8fc7\u671f\uff0cpexpire \u5355\u4f4d\u6beb\u79d2\n127.0.0.1:6379&gt; pexpire age 10000\n(integer) 1\n<\/pre>\n<p>2.\u67e5\u770b\u5269\u4f59\u65f6\u95f4 ttl<\/p>\n<pre>\u67e5\u770b\u5269\u4f59\u5b58\u6d3b\u65f6\u957f\uff0c\u5355\u4f4d\u79d2\n127.0.0.1:6379&gt; ttl name\n(integer) 7\n\u67e5\u770b\u5269\u4f59\u5b58\u6d3b\u65f6\u957f\uff0c\u5355\u4f4d\u6beb\u79d2\n127.0.0.1:6379&gt; pttl name\n(integer) 4006\n<\/pre>\n<p>3.\u53d6\u6d88\u8fc7\u671fpersist<\/p>\n<pre>127.0.0.1:6379&gt; set age 18\nOK\n127.0.0.1:6379&gt; expire age 20\n(integer) 1\n127.0.0.1:6379&gt; ttl age\n(integer) 15\n\u53d6\u6d88\u8fc7\u671f\n127.0.0.1:6379&gt; persist age\n(integer) 1\nttl\u8fd4\u56de-1\u8868\u793a\u6ca1\u6709\u8bbe\u7f6e\u8fc7\u671f\u65f6\u95f4\uff0c\u8fd4\u56de-2\u8868\u793a\u6570\u636e\u4e0d\u5b58\u5728\n127.0.0.1:6379&gt; ttl age\n(integer) -1\n127.0.0.1:6379&gt; get age\n\"18\"\n<\/pre>\n<p>\u4eca\u5929\u5173\u4e8e\u300aRedis\u8bbe\u7f6ekey\u7684\u8fc7\u671f\u65f6\u95f4\u300b\u7684\u5185\u5bb9\u5c31\u4ecb\u7ecd\u5230\u8fd9\u91cc\u4e86\uff0c\u662f\u4e0d\u662f\u5b66\u8d77\u6765\u4e00\u76ee\u4e86\u7136\uff01\u60f3\u8981\u4e86\u89e3\u66f4\u591a\u5173\u4e8eredis\u7684\u5185\u5bb9\u8bf7\u5173\u6ce8golang\u5b66\u4e60\u7f51\u516c\u4f17\u53f7\uff01<\/p>\n<p>    \u7248\u672c\u58f0\u660e \u672c\u6587\u8f6c\u8f7d\u4e8e\uff1a\u811a\u672c\u4e4b\u5bb6 \u5982\u6709\u4fb5\u72af\uff0c\u8bf7\u8054\u7cfb \u5220\u9664  <\/p>\n<dl>\n<dt>\n <\/dt>\n<dd>\n   redis\u4e2dhash\u6570\u636e\u7ed3\u6784\u53ca\u8bf4\u660e\n <\/dd>\n<\/dl>\n<dl>\n<dt>\n <\/dt>\n<dd>\n   redis\u5220\u9664hash\u7684\u5b9e\u73b0\u65b9\u5f0f\n <\/dd>\n<\/dl>\n","protected":false},"excerpt":{"rendered":"<p>Redis\u8bbe\u7f6ekey\u7684\u8fc7\u671f\u65f6\u95f4 0\u6d4f\u89c8 \u6536\u85cf \u4ece\u73b0\u5728\u5f00\u59cb\uff0c\u52aa\u529b\u5b66\u4e60\u5427\uff01\u672c\u6587\u300aRedis\u8bbe\u7f6ekey\u7684\u8fc7\u671f\u65f6\u95f4\u300b\u4e3b\u8981\u8bb2\u89e3\u4e86Rediskey\u3001\u8fc7\u671f\u65f6\u95f4\u7b49\u7b49\u76f8\u5173\u77e5\u8bc6\u70b9\uff0c\u6211\u4f1a\u5728golang\u5b66\u4e60\u7f51\u4e2d\u6301\u7eed\u66f4\u65b0\u76f8\u5173\u7684\u7cfb\u5217\u6587\u7ae0\uff0c\u6b22\u8fce\u5927\u5bb6\u5173\u6ce8\u5e76\u79ef\u6781\u7559\u8a00\u5efa\u8bae\u3002\u4e0b\u9762\u5c31\u5148\u4e00\u8d77\u6765\u770b\u4e00\u4e0b\u672c\u7bc7\u6b63\u6587\u5185\u5bb9\u5427\uff0c\u5e0c\u671b\u80fd\u5e2e\u5230\u4f60\uff01 Redis\u4e2d\u53ef\u4ee5\u8bbe\u7f6e\u6570\u636e\u7684\u8fc7\u671f\u65f6\u95f4\uff0c\u4e00\u65e6\u8fc7\u671f\u81ea\u52a8\u5220\u9664\u6570\u636e\u3002 1.\u8bbe\u7f6e\u8fc7\u671f\u65f6\u95f4 expire 127.0.0.1:6379&gt; set name &#8220;ok&#8221; \/\/\u8bbe\u7f6e10s\u540e\u8fc7\u671f\uff0cexpire\u5355\u4f4d\u79d2 127.0.0.1:6379&gt; expire name 10 \/\/\u8bbe\u7f6e10s\u540e\u8fc7\u671f\uff0cpexpire \u5355\u4f4d\u6beb\u79d2 127.0.0.1:6379&gt; pexpire age 10000 (integer) 1 2.\u67e5\u770b\u5269\u4f59\u65f6\u95f4 ttl \u67e5\u770b\u5269\u4f59\u5b58\u6d3b\u65f6\u957f\uff0c\u5355\u4f4d\u79d2 127.0.0.1:6379&gt; ttl name (integer) 7 \u67e5\u770b\u5269\u4f59\u5b58\u6d3b\u65f6\u957f\uff0c\u5355\u4f4d\u6beb\u79d2 127.0.0.1:6379&gt; pttl name (integer) 4006 3.\u53d6\u6d88\u8fc7\u671fpersist 127.0.0.1:6379&gt; set age 18 OK 127.0.0.1:6379&gt; expire age 20 (integer) 1 127.0.0.1:6379&gt; ttl age (integer) 15 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8],"tags":[],"class_list":["post-44540","post","type-post","status-publish","format-standard","hentry","category-os"],"_links":{"self":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/44540","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/comments?post=44540"}],"version-history":[{"count":0,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/44540\/revisions"}],"wp:attachment":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/media?parent=44540"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/categories?post=44540"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/tags?post=44540"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}