Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 4ed9a08

Browse filesBrowse files
committed
bug #3830 Generate an APC prefix based on __FILE__ (trsteel88)
This PR was submitted for the 2.4 branch but it was merged into the 2.3 branch instead (closes #3830). Discussion ---------- Generate an APC prefix based on __FILE__ Relates to https://github.com/symfony/symfony-standard/issues/654 Commits ------- 55a7676 Generate an APC prefix based on __FILE__
2 parents 4211bff + 918e9c2 commit 4ed9a08
Copy full SHA for 4ed9a08

File tree

Expand file treeCollapse file tree

1 file changed

+4
-4
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+4
-4
lines changed

‎components/class_loader/cache_class_loader.rst

Copy file name to clipboardExpand all lines: components/class_loader/cache_class_loader.rst
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ ApcClassLoader
3737
// instance of a class that implements a findFile() method, like the ClassLoader
3838
$loader = ...;
3939
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);
4242
4343
// register the cached class loader
4444
$cachedLoader->register();
@@ -60,8 +60,8 @@ it is straightforward::
6060
// instance of a class that implements a findFile() method, like the ClassLoader
6161
$loader = ...;
6262
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);
6565
6666
// register the cached class loader
6767
$cachedLoader->register();

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.