Verzeichnisstruktur phpBB-3.2.0


Veröffentlicht
06.01.2017

So funktioniert es


Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück

Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

production.html

Zuletzt modifiziert: 09.10.2024, 12:56 - Dateigröße: 4.97 KiB


001  <!DOCTYPE html>
002  <html class="no-js" id="top">
003  <head>
004      <title>ProxyManager - Tuning the ProxyManager for production</title>
005   
006      <meta name="description" content="A proxyManager write in php" />
007      <meta name="keywords" content="ProxyManager, proxy, manager, ocramius, Marco Pivetta, php, production" />
008      <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
009      <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600' rel='stylesheet' type='text/css'>
010      <link href="css/styles.css" rel="stylesheet" />
011      <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/styles/default.min.css">
012      <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/8.3/highlight.min.js"></script>
013      <script>hljs.initHighlightingOnLoad();</script>
014      <link rel="shortcut icon" href="favicon.ico">
015  </head>
016  <body>
017   
018  <header class="site-header">
019  <div class="container">
020  <h1><a href="index.html"><img alt="ProxyManager" src="img/block.png" /></a></h1>
021   
022  <nav class="main-nav" role="navigation">
023  <ul>
024      <li><a href="https://github.com/Ocramius/ProxyManager" target="_blank">Github</a>
025      <div class="bcms-clearfix"></div>
026  </li>
027  </ul>
028  </nav>
029  </div>
030  </header>
031  <main role="main">
032  <section class="component-content">
033   
034  <div class="component-demo" id="live-demo">
035      <div class="container">
036              <div class="main-wrapper" style="text-align: right">
037                  <iframe src="http://ghbtns.com/github-btn.html?user=ocramius&amp;repo=ProxyManager&amp;type=fork&amp;count=true&amp;size=large"
038    allowtransparency="true" frameborder="0" scrolling="0" width="310" height="40"></iframe>
039   
040                  <iframe src="http://ghbtns.com/github-btn.html?user=ocramius&amp;repo=ProxyManager&amp;type=watch&amp;count=true&amp;size=large"
041    allowtransparency="true" frameborder="0" scrolling="0" width="200" height="40"></iframe>
042   
043              </div>
044          <div class="bcms-clearfix bcms-clearfix"></div>
045      </div>
046  </div>
047  <div class="component-info">
048  <div class="container">
049  <aside class="sidebar">
050      <nav class="spy-nav">
051          <ul>
052              <li><a href="index.html">Intro</a></li>
053              <li><a href="virtual-proxy.html">Virtual Proxy</a></li>
054              <li><a href="null-object.html">Null Objects</a></li>
055              <li><a href="ghost-object.html">Ghost Objects</a></li>
056              <li><a href="remote-object.html">Remote Object</a></li>
057              <li><a href="contributing.html">Contributing</a></li>
058              <li><a href="credits.html">Credits</a></li>
059              <li><a href="copyright.html">Copyright</a></li>
060          </ul>
061      </nav>
062  <div class="bcms-clearfix bcms-clearfix"></div>
063  <a class="btn btn-action btn-full download-component"
064      href="download.html">Download</a>
065      <div class="bcms-clearfix"></div>
066  </aside>
067   
068  <div class="content">
069      <div class="bcms-clearfix"></div>
070      <h3 class="section-title">Tuning the ProxyManager for production</h3>
071   
072      <p>By default, all proxy factories generate the required proxy classes at runtime.</p>
073      
074      <p>Proxy generation causes I/O operations and uses a lot of reflection, so be sure to have generated all of your proxies <strong>before deploying your code on a live system</strong>, or you may experience poor performance.</p>
075      
076      <p>You can configure ProxyManager so that it will try autoloading the proxies first. Generating them "bulk" is not yet implemented:</p>
077   
078      <pre>
079          <code class="php">
080  $config = new \ProxyManager\Configuration();
081  $config->setProxiesTargetDir(__DIR__ . '/my/generated/classes/cache/dir');
082   
083  // then register the autoloader
084  spl_autoload_register($config->getProxyAutoloader());
085          </code>
086      </pre>
087   
088      <p>Generating a classmap with all your proxy classes in it will also work perfectly.</p>
089   
090      <p>Please note that all the currently implemented <code>ProxyManager\Factory\*</code> classes accept a <code>ProxyManager\Configuration</code> object as optional constructor parameter. This allows for fine-tuning of ProxyManager according to your needs.</p>
091   
092  </main>
093   
094      <footer class="site-footer" role="contentinfo">
095          <div class="container">
096              <div class="footer-logos">
097                  <ul>
098                      <li><a href="index.html">Intro</a> | </li>
099                      <li><a href="virtual-proxy.html">Virtual Proxy</a> | </li>
100                      <li><a href="null-object.html">Null Objects</a> | </li>
101                      <li><a href="ghost-object.html">Ghost Objects</a> | </li>
102                      <li><a href="remote-object.html">Remote Object</a> | </li>
103                      <li><a href="contributing.html">Contributing</a> | </li>
104                      <li><a href="credits.html">Credits</a> | </li>
105                      <li><a href="copyright.html">Copyright</a></li>
106                  </ul>
107              </div>
108          </div>
109   
110          <div class="bcms-clearfix"></div>
111      </footer>
112      <div class="bcms-clearfix"></div>
113      </body>
114  </html>
115