SmartPHP.net
29th March 2003
SmartPHP.net has some useful looking classes, including SmartTemplate (like Smarty but much simpler to use) and SmartCache, a very intelligent caching class that can be used to cache data objects as well as the output from whole pages. The example given caches a database query using the SQL statement as a unique cache key:
require_once "class.smartcache.php"; $query = "select * from ... where ..."; $data = new SmartCache( $query ); if (!$result = $data->read( 120 )) // Reuse only 120 Seconds { result = $db->exec( $query ); // Read DB Result ... $data->write( $result ); // Store result }
More recent articles
- AI assisted search-based research actually works now - 21st April 2025
- Maybe Meta's Llama claims to be open source because of the EU AI act - 19th April 2025
- Image segmentation using Gemini 2.5 - 18th April 2025