Laravel CacheableEloquent

  • 创建 create()
  • 更新 save()
  • 删除 delete()
  • 软删除 softDelete() (最终落在 save())
  • 单条主键查询 find()
  • 多条主键查询 find()
  • belongsTo
  • belongsToMany (join 操作,无法缓存)

-EOF-