Created
June 13, 2014 15:12
-
-
Save lozcalver/752c42095c8374866032 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% cached List(FeatureBox).Max(LastEdited) %> | |
... | |
<% end_cached %> | |
SHOW TABLES LIKE 'FeatureBox' 0.0005ms | |
SHOW FULL FIELDS IN "FeatureBox" 0.0021ms | |
SELECT DISTINCT "ClassName" FROM "FeatureBox" 0.0002ms | |
SELECT DISTINCT MAX("LastEdited") FROM "FeatureBox" 0.0002ms | |
------------------------------------------------------------------------------------------------------ | |
<% cached CacheKey_FeatureBoxes %> | |
... | |
<% end_cached %> | |
public function CacheKey_FeatureBoxes() { | |
$query = new SQLQuery("MAX(LastEdited)", "FeatureBox"); | |
return $query->execute()->value(); | |
} | |
SELECT MAX(LastEdited) FROM FeatureBox 0.0004ms |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment