用到了 redis 的键空间通知(keyspace notifications) 今天帮忙解决问题时遇到的redis一个功能点 具体行为就是:某个键值到了过期时间自动触发回调函数,然后执行一些操作,比如订单15分钟未支付就自动取消。 系统环境Win10, PHP7.1 下面记录下刚才爬的坑: 1、r Read More
posted @ 2020-01-08 18:30 _Eternity味道 Views(5585) Comments(0) Diggs(0) Edit
O(n)这个大O表示的是最坏情况下的时间复杂度,就比如你举的例子,一共n^3次乘法和n^3次加法,那么加起来就是2×n^3。 然后如果有一个表达式f(n),使得n趋于无穷大的时候,lim(2×n^3)/f(n)=常数c,那么就可以用大O表示。 表示为O(f(n)),而且规定f(n)的表达式是不带常数 Read More
posted @ 2020-01-08 16:36 _Eternity味道 Views(2419) Comments(0) Diggs(0) Edit
``` Every InnoDB table has a special index called the clustered index where the data for the rows is stored. Typically, the clustered index is synonymous with the primary key. To get the best performa Read More
posted @ 2020-01-08 11:26 _Eternity味道 Views(339) Comments(0) Diggs(0) Edit