Skip to content

Instantly share code, notes, and snippets.

@winarcooo
Last active May 8, 2024 12:42
Show Gist options
  • Save winarcooo/e92016fea1a3f2852847700efa60e772 to your computer and use it in GitHub Desktop.
Save winarcooo/e92016fea1a3f2852847700efa60e772 to your computer and use it in GitHub Desktop.
<?php
// check from cache, if not exist get using closure,
// then save to cache
$value = Cache::remember('users', $seconds, function () {
return DB::table('users')->get();
});
// wrap closure using transaction from DB facade
use Illuminate\Support\Facades\DB;
DB::transaction(function () {
DB::update('update users set votes = 1');
DB::delete('delete from posts');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment