This repository has been archived by the owner on May 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
85 lines (61 loc) · 3.42 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta name="description" content="eAccelerator : A PHP opcode cache / optimizer / accelerator" />
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
<title>eAccelerator</title>
</head>
<body>
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
<a id="forkme_banner" href="https://github.com/eaccelerator/eaccelerator">View on GitHub</a>
<h1 id="project_title">eAccelerator</h1>
<h2 id="project_tagline">A PHP opcode cache / optimizer / accelerator</h2>
<section id="downloads">
<a class="zip_download_link" href="https://github.com/eaccelerator/eaccelerator/zipball/master">Download this project as a .zip file</a>
<a class="tar_download_link" href="https://github.com/eaccelerator/eaccelerator/tarball/master">Download this project as a tar.gz file</a>
</section>
</header>
</div>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
<h3>Welcome to the eAccelerator project</h3>
<p>eAccelerator is a free open-source PHP accelerator & optimizer. It increases the performance of PHP scripts by caching them in their compiled state, so that the overhead of compiling is almost completely eliminated. It also optimizes scripts to speed up their execution. eAccelerator typically reduces server load and increases the speed of your PHP code by 1-10 times.</p>
<p>eAccelerator stores compiled PHP scripts in shared memory and executes code directly from it. It creates locks only for a short time, while searching for a compiled PHP script in the cache, so one script can be executed simultaneously by several engines. Files that can't fit in shared memory are cached on disk only. </p>
<p>eAccelerator was born in December 2004 as a fork of the Turck MMCache project. Turck MMCache was created by Dmitry Stogov and much of the eAccelerator code is still based on his work.</p>
<h3>News</h3>
<p>25 Jul 2012 - Project moved to Github</p>
<ul>
<li>The current master branch supports PHP-5.4!</li>
</ul>
<h3>Authors and Contributors</h3>
<p>Current contributor:</p>
<ul>
<li>Hans Rakers (<a href="https://github.com/hrak" class="user-mention">@hrak</a>)</li>
</ul>
<p>Former contributors to the project are:</p>
<ul>
<li>Bart Vanbrabant (<a href="https://github.com/bartv" class="user-mention">@bartv</a>)</li>
<li>Franck Tabary</li>
<li>Everaldo Canuto (<a href="https://github.com/ecanuto" class="user-mention">@ecanuto</a>)</li>
<li>Reiner Jung</li>
<li>Shin Seung Woo</li>
<li>Frank Alcantara</li>
</ul><p>For a full list see <a href="https://github.com/eaccelerator/eaccelerator/wiki/Team">the wiki page</a>.</p>
<h3>Support or Contact</h3>
<p>Check out the documentation at <a href="http://github.com/eaccelerator/eaccelerator/wiki">http://github.com/eaccelerator/eaccelerator/wiki</a><br />
The mailing list is available at <a href="http://groups.google.com/group/eaccelerator">http://groups.google.com/group/eaccelerator</a></p>
</section>
</div>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
<p>Published with <a href="http://pages.github.com">GitHub Pages</a></p>
</footer>
</div>
</body>
</html>