<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[沧海一粟]]></title> 
<link>http://www.dzhope.com/index.php</link> 
<description><![CDATA[Web系统架构与服务器运维,php开发]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[沧海一粟]]></copyright>
<item>
<link>http://www.dzhope.com/post//</link>
<title><![CDATA[php中利用redis限制接口请求频率]]></title> 
<author>jed &lt;jed521@163.com&gt;</author>
<category><![CDATA[代码编程]]></category>
<pubDate>Wed, 14 Mar 2018 02:51:39 +0000</pubDate> 
<guid>http://www.dzhope.com/post//</guid> 
<description>
<![CDATA[ 
	<div class="code"><br/>&lt;?php<br/><br/>function getRedis()<br/>&#123;<br/>&nbsp;&nbsp;&nbsp;&nbsp;$redis = new Redis();<br/>&nbsp;&nbsp;&nbsp;&nbsp;$redis-&gt;connect(&#039;127.0.0.1&#039;, 6379);<br/>&nbsp;&nbsp;&nbsp;&nbsp;return $redis;<br/>&#125;<br/><br/>function getApiLimit($api, $default = &#039;2000&#039;)<br/>&#123;<br/>&nbsp;&nbsp;&nbsp;&nbsp;//接口名称 = 每次请求ms间隔<br/>&nbsp;&nbsp;&nbsp;&nbsp;$info = &#91;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#039;user.info&#039; =&gt; &#039;500&#039;,<br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#039;user.login&#039; =&gt; &#039;1000&#039;<br/>&nbsp;&nbsp;&nbsp;&nbsp;&#93;;<br/>&nbsp;&nbsp;&nbsp;&nbsp;return isset($info&#91;$api&#93;) ? $info&#91;$api&#93; : $default;<br/>&#125;<br/><br/>$api = isset($_GET&#91;&#039;path&#039;&#93;) ? $_GET&#91;&#039;path&#039;&#93; : &#039;main&#039;;<br/>$time = getApiLimit($api);<br/>$key = &quot;api_limit_&quot; . $api;<br/>$redis = getRedis();<br/>$num = $redis-&gt;incr($key);<br/>if($num == 1) &#123;<br/>&nbsp;&nbsp;&nbsp;&nbsp;$redis-&gt;pExpire($key, $time);<br/>&#125; else &#123;<br/>&nbsp;&nbsp;&nbsp;&nbsp;exit(&#039;api limit&#039;);<br/>&#125;<br/>echo &#039;success&#039;;<br/></div>
]]>
</description>
</item><item>
<link>http://www.dzhope.com/post//#blogcomment</link>
<title><![CDATA[[评论] php中利用redis限制接口请求频率]]></title> 
<author> &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate> 
<guid>http://www.dzhope.com/post//#blogcomment</guid> 
<description>
<![CDATA[ 
	
]]>
</description>
</item>
</channel>
</rss>