11 2016 档案
redis 简单应用
摘要:Incr zIncrBy 有序集合 Sorted sets Cache 缓存 阅读全文
posted @ 2016-11-26 10:37 jzfan
reset 单个文件 回退
摘要:git将单个文件恢复到历史版本的正确方法如下: git reset commit_id 文件路径 git checkout -- 文件路径 阅读全文
posted @ 2016-11-25 16:33 jzfan
laravel DB事物
摘要:public function store(Request $request, $id) { $externalAccount = ExternalAccounts::find($id); DB::beginTransaction(); try { $externalAccount->fund_nu 阅读全文
posted @ 2016-11-16 11:41 jzfan