static S cacheGet(Snippet s) { ret loadSnippet(s); } static S cacheGet(S snippetID) { ret loadSnippet(snippetID); } static S cacheGet(S snippetID, bool preferCached) { ret loadSnippet(snippetID, preferCached); } static S cacheGet(long snippetID) { ret loadSnippet(snippetID); } static S cacheGet(long snippetID, boolean preferCached) { ret loadSnippet(snippetID, preferCached); }