Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: Apache2.4.3 mod_libmemcached_cache building |
|
Author |
|
tamachi
Joined: 20 Jan 2010 Posts: 2 Location: Tokyo
|
Posted: Sat 29 Oct '16 15:10 Post subject: Apache2.4.3 mod_libmemcached_cache building |
|
|
It works for me fine ...
If it is something wrong, anyone advice me. thanks
Windows2008R2 SP1
Apache 2.4.32(x64)
VC13
build modules
libmemcached-win32
mod_libmemcaced_cache-master
howto
add libmemcached.sln and mod_libmemcached_cache.sln to your Apache.sln
1.build libmemcached
2.buid mod_libmemcaced_cache
3.copy mod_libmemcaced_cache.so to your apache modules holder from modules\mod-libmemcached-cache\Release.
4.copy memcached.dll to your apache bin holder from srclib\libmemcached\visualc\Release.
5.add mod_libmemcaced_cache.so and entry base addr to os\win32\BaseAddr.ref(see sample file included)
6.add directive for mod_libmemcaced_cache.so to conf file as belows,
(sample cache.conf included)
LoadModule cache_module modules/mod_cache.so
LoadModule libmemcached_cache_module modules/mod_libmemcached_cache.so
<IfModule libmemcached_cache_module>
LibmemCacheServers 127.0.0.1:11211
CacheEnable libmemcached /
</IfModule>
#notice you can change directive, LibmemCacheServers 127.0.0.1:11211 for your server IP and memcaced port
7.restart apache.
https://www.dropbox.com/s/qq19lyr12s6m7i4/Apache2.4mod_libmemcaced_cache.rar?dl=0 |
|
Back to top |
|
|
|
|
|
|