摘要: $reflection = new \ReflectionClass(\App\Services\EmailService::class); //获取构造方法的对象 $constructor = $reflection->getConstructor(); //获取构造方法的参数列表 $parameters = $con... 阅读全文
posted @ 2019-07-18 13:49 沉默的土豆 阅读(396) 评论(0) 推荐(0) 编辑
摘要: BitMap是什么 Bitmap(即Bitset) Bitmap是一串连续的2进制数字(0或1),每一位所在的位置为偏移(offset),bitmap就是通过最小的单位bit来进行0或者1的设置,表示某个元素对应的值或者状态。 Redis中的BitMap Redis从2.2.0版本开始新增了setb 阅读全文
posted @ 2019-07-18 10:27 沉默的土豆 阅读(376) 评论(0) 推荐(0) 编辑