## Cache
~~~php
// 获取缓存对象,约等于 Cache
cache()
// 注意 5.8 缓存单位为「秒」,之前版本为「分」
Cache::put('key', 'value', $seconds);
// 未设置过期时间将永久有效
Cache::put('key', 'value');
Cache::add('key', 'value', $seconds);
Cache::forever('key', 'value');
Cache::sear('key', function(){ return 'value' });
Cache::remember('key', $seconds, function(){ return 'value' });
Cache::rememberForever('key', function(){ return 'value' });
Cache::forget('key');
Cache::has('key');
Cache::get('key');
Cache::get('key', 'default');
Cache::get('key', function(){ return 'default'; });
// 取到数据之后再删除它
Cache::pull('key');
// 清空所有缓存
Cache::flush();
Cache::increment('key');
Cache::increment('key', $amount);
Cache::decrement('key');
Cache::decrement('key', $amount);
Cache::tags('my-tag')->put('key','value', $seconds);
Cache::tags('my-tag')->has('key');
Cache::tags('my-tag')->get('key');
Cache::tags(['people', 'artists'])->put('John', $john, $seconds);
Cache::tags('my-tag')->forget('key');
Cache::tags('my-tag')->flush();
Cache::tags(['people', 'authors'])->flush();
Cache::section('group')->put('key', $value);
Cache::section('group')->get('key');
Cache::section('group')->flush();
Cache::tags(['people', 'artists'])->put('John', $john, $seconds);
// 辅助函数
cache('key');
cache(['key' => 'value'], $seconds);
cache(['key' => 'value'], now()->addMinutes(10));
cache()->remember('users', $seconds, function() { return User::all(); });
// 指定缓存存储
Cache::store('file')->get('foo');
Cache::store('redis')->put('name', 'Jack', 600); // 10 分钟
// 事件
'Illuminate\Cache\Events\CacheHit' => ['App\Listeners\LogCacheHit',],
'Illuminate\Cache\Events\CacheMissed' => ['App\Listeners\LogCacheMissed',],
'Illuminate\Cache\Events\KeyForgotten' => ['App\Listeners\LogKeyForgotten',],
'Illuminate\Cache\Events\KeyWritten' => ['App\Listeners\LogKeyWritten',],
~~~
- 参考知识--非必学仅供必要时候查询
- 知识清单
- Composer 安装等
- artisan--创建模型-控制器-各种模块
- Route--路由
- Paginate--分页
- File--文件
- View--视图
- template--模版
- Model--模型
- Schema--数据表索引-外键-字段类型
- DB-基本使用-查询语句-joins-聚合--原生sql-增删改查等
- message--消息
- Validation--验证规则
- Auth-用户认证-用户权限
- Helper-数组对象-路径-字符串-urls-links等
- Session会话
- Response--回应
- Request--请求
- Redirect--重定向
- Environment--环境
- Log--日志
- URL--地址
- Event--事件
- Input--输入
- Security安全--哈希-加密解密
- Queue--监听
- Container--容器
- Config--参数设置
- Cache--缓存
- Cookie--设置-获取--删除等
- Mail--邮件
- String--字符串
- Collection--集合
- Storage--存储
- Lang--语言
- 单元测试
- 文件夹结构简介
- 第一章 laravel8运行环境的搭建(已经有了运行环境的直接跳过)