摘要: redis实现方案使用bitmap来实现,bitmap是redis 2.2版本开始支持的功能,一般用于标识状态, 另外 ,用bitmap进行当天有多少人签到非常的方便,使用bitcount $count = 0;$count = Redis::BITCOUNT($key);设置两个bitmap , 阅读全文
posted @ 2022-09-27 17:00 飞鹰之歌 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.cnblogs.com/Su-per-man/p/10775109.html 阅读全文
posted @ 2022-01-24 11:26 飞鹰之歌 阅读(20) 评论(0) 推荐(0) 编辑
摘要: https://www.kancloud.cn/chengguang/swagger-php/1172136 阅读全文
posted @ 2021-07-28 22:05 飞鹰之歌 阅读(43) 评论(0) 推荐(0) 编辑
摘要: laykefu thinkphp5+Gatewayworker搭建的web客服系统 体验地址:https://www.laykefu.com 客服地址:https://www.laykefu.com/service 账户密码: 客服小美 123456 后台管理地址:https://www.layke 阅读全文
posted @ 2021-07-28 22:01 飞鹰之歌 阅读(377) 评论(0) 推荐(0) 编辑
摘要: redis操作:RedisDesktopManager 阅读全文
posted @ 2021-07-17 10:17 飞鹰之歌 阅读(21) 评论(0) 推荐(0) 编辑
摘要: function get($url,$rerror = 0,$ip = ''){ $ch = curl_init(); if(stripos($url,"https://")!==FALSE){ curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); cur 阅读全文
posted @ 2021-06-15 17:58 飞鹰之歌 阅读(264) 评论(0) 推荐(0) 编辑
摘要: 浏览器中输入 chrome://flags/ 阅读全文
posted @ 2021-04-08 18:02 飞鹰之歌 阅读(60) 评论(0) 推荐(0) 编辑
摘要: #nginxps aux | grep -v root | grep nginx | cut -d\ -f1 | sort | uniq#php-fpmps aux | grep -v root | grep php-fpm | cut -d\ -f1 | sort | uniq原文链接:https 阅读全文
posted @ 2021-02-27 16:38 飞鹰之歌 阅读(325) 评论(0) 推荐(0) 编辑
摘要: apache ErrorDocument 404 /404.phpRewriteEngine OnRewriteBase /RewriteCond %{http_host} ^qa8.chinajm.cn [NC]RewriteRule ^(.*)$ http://www.qa8.chinajm.c 阅读全文
posted @ 2019-12-27 10:14 飞鹰之歌 阅读(318) 评论(0) 推荐(0) 编辑
摘要: 考虑过的方法有 直接用时间戳,或者以此衍生的一系列方法 Mysql自带的uuid 直接用时间戳,或者以此衍生的一系列方法 Mysql自带的uuid 以上两种方法都可以查到就不多做解释了 最终选择了Twitter的SnowFlake算法 这个算法的好处很简单可以在每秒产生约400W个不同的16位数字I 阅读全文
posted @ 2018-01-04 19:55 飞鹰之歌 阅读(1938) 评论(0) 推荐(0) 编辑