Chinaunix首页 | 论坛 | 博客
  • 博客访问: 246064
  • 博文数量: 41
  • 博客积分: 1523
  • 博客等级: 上尉
  • 技术积分: 579
  • 用 户 组: 普通用户
  • 注册时间: 2007-02-05 21:23
文章分类

全部博文(41)

文章存档

2014年(1)

2013年(2)

2012年(1)

2011年(2)

2010年(3)

2009年(1)

2008年(20)

2007年(11)

分类: LINUX

2008-02-23 01:33:02

在集群中共享session是一个问题。
方案: 1、把session放到共享的设备上去,如nfs。
         2、放到 memcache 中,这种方法被很多人推崇。
memcache install:
download
install memcache support modules:
download ~provos/libevent/
./configure
make
make install
install memcache
./configure --prefix=/usr/local/memcached --enable-threads
make
make install
创建一个启动文件 /etc/init.d/memcached

#!/bin/sh
#
# memcached: MemCached Daemon
#
# chkconfig: - 90 25
# description: MemCached Daemon
#
# Source function library.
. /etc/rc.d/init.d/functions
. /etc/sysconfig/network

#[ ${NETWORKING} = "no" ] && exit 0
#[ -r /etc/sysconfig/dund ] || exit 0
#. /etc/sysconfig/dund
#[ -z "$DUNDARGS" ] && exit 0

start()
{
        echo -n $"Starting memcached: "
        daemon $MEMCACHED -u daemon -d -m 1024 -l 192.168.0.100 -p 11211
        echo
}

stop()
{
        echo -n $"Shutting down memcached: "
        killproc memcached

        echo
}

MEMCACHED="/usr/local/memcached/bin/memcached"
[ -f $MEMCACHED ] || exit 1

# See how we were called.
case "$1" in
  start)
        start
        ;;
  stop)
        stop
        ;;
  restart)
        stop
        sleep 3
        start
        ;;
    *)
        echo $"Usage: $0 {start|stop|restart}"
        exit 1
esac

exit 0


php memcahce modules install:
download
phpize
./configure --enable-memcache
make
make install

编辑 php.ini 在 [Session] 添加指定你安装的memcache.so的位置。
extension=memcache.so
extension_dir = "/usr/local/php/lib/php/extensions/"
memcache.allow_failover = 1
memcache.max_failover_attempts = 20
memcache.chunk_size = 8192
memcache.default_port = 11211
session.save_handler = memcache
session.save_path = "udp://192.168.0.100:11211,tcp://192.168.0.101:11211"

一个简单的php测试脚本 test.php

//
//
  session_start();
  if($_GET['act']=='write')
    $_SESSION['name']='0009847';
  elseif($_GET['act']=='read')
    var_dump($_SESSION);
  else
    echo 'invalid argument';
?>

阅读(904) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~