Skip to content

Instantly share code, notes, and snippets.

View nigrosimone's full-sized avatar
👋

Nigro Simone nigrosimone

👋
View GitHub Profile
@nigrosimone
nigrosimone / DiskCache.php
Last active May 7, 2023 16:18
Simple php cache using php generated files and opcache
<?php
/**
* Simple php cache using php generated files and opcache
* Usage:
* $diskCache = new DiskCache();
* $diskCache->write('foo', 'bar');
* echo $diskCache->read('foo'); // print bar
*/
class DiskCache {