Linux和Windows平台memcached server的安装

Linux平台


http://code.google.com/p/memcached/wiki/NewStart?tm=6



Windows平台

下载地址:

http://code.jellycan.com/files/memcached-1.2.6-win32-bin.zip


以下from:

http://www.codeforest.net/how-to-install-memcached-on-windows-machine

Copy下来以防网址失效


After some research I found that there is a Win32 binary version of memcached available here.

So go there and download win32 binary version to your computer. When downloaded, extract the file to folder memcahced on your C partition.

You should get only one file named memcached.exe. Now we need to install this as a service, as memCached is daemon and should be run only as service.

To install Memcached as a service, follow these steps (please change all forward slashes to backslashes):

  1. If you’re running Vista, you should set memcached.exe to Run as administrator
  2. Install the service using the command:
    1c:/memcached/memcached.exe  -d install

    from the command prompt

  3. Start the server from the Services or by running one of the following commands:
    1c:/memcached/memcached.exe -d  start

    or

    1net start "memcached Server"

That is it, now your memcached server is installed and is listening to port 11211. There is one more thing left to do. By default, server is set to 64Mb memory limit, which is too small. To correct, go to Registry Editor and find key

1HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services/memcached  Server .

Change the ImagePath entry to:

1“C:/memcached/memcached.exe” -d runservice -m 512

This way you will use 512 Mb memory limit for your server.

If you are using WAMP, then just turn on php_memcache extension in it. Now we are ready to go testing.

The simplest test is to write something to memcache that will expire in 30 seconds, and then try to retrieve the value from cache.

So write this into your test file:

01<?php
02    $memcache = new Memcache; // instantiating memcache extension class
03    $memcache->connect("localhost",11211); // try 127.0.0.1 instead of localhost
04                                           // if it is not working
05 
06    echo "Server's version: " . $memcache->getVersion() . "<br />\n";
07 
08    // we will create an array which will be stored in cache serialized
09    $testArray = array('horse', 'cow', 'pig');
10    $tmp       = serialize($testArray);
11 
12    $memcache->add("key", $tmp, 30);
13 
14    echo "Data from the cache:<br />\n";
15    print_r(unserialize($memcache->get("key")));
16?>

If everything went ok, you should see your array written out of memcache. Now you can use this powerful caching mechanism to develop really fast PHP applications. If you need to know more, go to PHP manual Memcached page



Memcached的基本设置

-p 监听的端口
-l 连接的IP地址, 默认是本机
-d start 启动memcached服务
-d restart 重起memcached服务
-d stop|shutdown 关闭正在运行的memcached服务
-d install 安装memcached服务
-d uninstall 卸载memcached服务
-u 以的身份运行 (仅在以root运行的时候有效)
-m 最大内存使用,单位MB。默认64MB
-M 内存耗尽时返回错误,而不是删除项
-c 最大同时连接数,默认是1024
-f 块大小增长因子,默认是1.25
-n 最小分配空间,key+value+flags默认是48
-h 显示帮助


参考:

http://splinedancer.com/memcached-win32/

http://code.google.com/p/memcached/wiki/PlatformWindows

http://shikii.net/blog/installing-memcached-for-php-5-3-on-windows-7/



  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值