duality_
duality_

Reputation: 18796

How to use a cache in Laravel 4

It used to be so simple in Laravel 3. Cache::put($key, $data, $minutes); - that's all! Now I'm looking at the Laravel 4 source code, trying to figure things out, but it's too complicated for me. I would like to use the FileSystem cache.

Can someone tell me how to do it?

Upvotes: 1

Views: 2915

Answers (1)

Robbo
Robbo

Reputation: 2116

Same way pretty much.

Laravel 4 Cache Docs

Upvotes: 2

Related Questions