File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,8 +37,8 @@ ApcClassLoader
37
37
// instance of a class that implements a findFile() method, like the ClassLoader
38
38
$loader = ...;
39
39
40
- // my_prefix is the APC namespace prefix to use
41
- $cachedLoader = new ApcClassLoader('my_prefix' , $loader);
40
+ // sha1(__FILE__) generates an APC namespace prefix
41
+ $cachedLoader = new ApcClassLoader(sha1(__FILE__) , $loader);
42
42
43
43
// register the cached class loader
44
44
$cachedLoader->register();
@@ -60,8 +60,8 @@ it is straightforward::
60
60
// instance of a class that implements a findFile() method, like the ClassLoader
61
61
$loader = ...;
62
62
63
- // my_prefix is the XCache namespace
64
- $cachedLoader = new XcacheClassLoader('my_prefix' , $loader);
63
+ // sha1(__FILE__) generates an XCache namespace prefix
64
+ $cachedLoader = new XcacheClassLoader(sha1(__FILE__) , $loader);
65
65
66
66
// register the cached class loader
67
67
$cachedLoader->register();
You can’t perform that action at this time.
0 commit comments