[FreeBSD 6.3/PHP5] Installing MemCacheD?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Gilles Ganault

    [FreeBSD 6.3/PHP5] Installing MemCacheD?

    Hello

    I'd like to play with MemcacheD and see how it improves read access
    to data, but I'm a bit lost at how to get from a working Apache2 +
    PHP5 + MySQL5 server on FreeBSD 6.3.

    I've never used PECL and PEAR before, and they seem required to
    install MemcacheD.

    I just ran "make config ; make ; make install" to build the php5 and
    php5-extensions ports. If it helps, according to phpinfo(),
    apache2handler has mod_mem_cache loaded.

    Could someone tell me what to do from here?

    Thank you.
  • Gilles Ganault

    #2
    Re: [FreeBSD 6.3/PHP5] Installing MemCacheD?

    On Sun, 30 Mar 2008 01:44:10 +0100, Gilles Ganault <nospam@nospam. com>
    wrote:
    >Could someone tell me what to do from here?
    Got it working without really knowing what I was doing :-)

    1. cd /usr/ports/databases/memcached; make ; make install
    2. vi /etc/rc.conf, and add memcached_enabl e="YES"
    3. /usr/local/etc/rc.d/memcached start
    4. run "netstat -an" to check that a process is listening on TCP
    11211
    5. cd /usr/ports/databases/pecl-memcache ; make ; make install
    6. /usr/local/bin/php -i | grep -i 'memcache'
    7. Play with memcached in PHP scripts

    Comment

    Working...