Skip to content

Commit

Permalink
* A retab on eaccelerator.c
Browse files Browse the repository at this point in the history
* Remove caching based on inodes
* Reimplement eaccelerator_stat to speed it up: the new ea_stat is
		almost twice as fast as the old version with inodes. The tests were
		done on a file that includes 10k empty files.
* Increment version to 1.0-dev
  • Loading branch information
bart committed Feb 1, 2010
1 parent d9c480e commit 9822dac
Show file tree
Hide file tree
Showing 5 changed files with 67 additions and 277 deletions.
9 changes: 9 additions & 0 deletions ChangeLog
@@ -1,3 +1,12 @@
2010-02-01 Bart Vanbrabant <bart at vanbrabant.eu>

* A retab on eaccelerator.c
* Remove caching based on inodes
* Reimplement eaccelerator_stat to speed it up: the new ea_stat is
almost twice as fast as the old version with inodes. The tests were
done on a file that includes 10k empty files.
* Increment version to 1.0-dev

2010-01-22 Bart Vanbrabant <bart at vanbrabant.eu>

* Release 0.9.6-rc2
Expand Down
10 changes: 0 additions & 10 deletions config.m4
Expand Up @@ -46,13 +46,6 @@ AC_ARG_WITH(eaccelerator-disassembler,
eaccelerator_disassemmbler=no
])

AC_ARG_WITH(eaccelerator-use-inode,
[ --without-eaccelerator-use-inode Don't use inodes to determine hash keys (never used on win32)],[
eaccelerator_inode=$withval
],[
eaccelerator_inode=yes
])

AC_ARG_WITH(eaccelerator-debug,
[ --with-eaccelerator-debug Enable the debug code so eaccelerator logs verbose.],[
eaccelerator_debug=$withval
Expand Down Expand Up @@ -95,9 +88,6 @@ if test "$PHP_EACCELERATOR" != "no"; then
if test "$eaccelerator_disassembler" = "yes"; then
AC_DEFINE(WITH_EACCELERATOR_DISASSEMBLER, 1, [Define if you like to explore Zend bytecode])
fi
if test "$eaccelerator_inode" = "yes"; then
AC_DEFINE(WITH_EACCELERATOR_USE_INODE, 1, [Undef if you don't wan't to use inodes to determine hash keys])
fi
if test "$eaccelerator_debug" = "yes"; then
AC_DEFINE(DEBUG, 1, [Undef when you want to enable eaccelerator debug code])
fi
Expand Down

0 comments on commit 9822dac

Please sign in to comment.