共 88 篇文章
本周阅读清单 20181112
腾讯云点播视频加密方案
https://cloud.tencent.com/document/product/266/9638HTTP Live Streaming (HLS) 概念
https://www.jianshu.com/p/2ce402a485caRTMP HLS HTTP 直播协议一次看个够
https://www.jianshu.com/p/4c89b2c83e59Golang 并发原理及 GPM 调度策略(一)
http://www.cnblogs.com/mokafamily/p/9975980.htmlGo 基础系列:互斥锁 Mutex 和读写锁 RWMutex 用法详述
http://www.cnblogs.com/f-ck-need-u/p/9998729.html
本周阅读清单 20181105
Writing Protobuf Services in PHP
https://mattallan.org/posts/protobuf-php-services/Practical Persistence in Go: Organising Database Access
https://www.alexedwards.net/blog/organising-database-accessCORS 跨域 Cookie 的设置与获取
https://www.jianshu.com/p/13d53acc124fGo 语言字符串高效拼接(一)
https://juejin.im/post/5be23a01518825697344f05egovendor 使用
https://www.orztu.com/post/using-govendor/
本周阅读清单 20181022
Practical Go: Real world advice for writing maintainable Go programs
https://dave.cheney.net/practical-go/presentations/qcon-china.htmlWhat happened to MySQL 6 & 7?
https://dba.stackexchange.com/questions/207506/what-happened-to-mysql-6-7工厂模式——看这一篇就够了
https://juejin.im/entry/58f5e080b123db2fa2b3c4c6What is a Laravel Interface?
https://vegibit.com/what-is-a-laravel-interface/理解 UUID
http://wsfdl.com/algorithm/2013/09/05/理解UUID.html
本周阅读清单 20181008
Laravel 中的 Pivot 表与多对多关系
https://9iphp.com/web/laravel/pivot-tables-and-many-to-many-relationships.htmlLaravel 的 tap 函数用法
https://laravel-china.org/articles/3893/laravel-tap-usageLaravel 5.5 模型关联
https://laravel-china.org/docs/laravel/5.5/eloquent-relationships/1333Laravel Collection “tap” Method
https://laravel-news.com/collection-tapgoroutine 同步方法总结
https://yq.aliyun.com/articles/649314面向对象设计之里氏替换原则(LSP)
https://juejin.im/post/5a31ecedf265da43346fed08
Redis 生产环境使用 SCAN 替代 KEYS
如果要在 Redis 生产环境服务器查看有哪些数据库键,当数据量特别大的时候千万不要用 keys *,这样会卡死,可以使用 scan 命令迭代。