brancusi has asked for the wisdom of the Perl Monks concerning the following question:
This works fine from a remote linux box (the cache is on a different windows 2003 server) and on the windows XP machine I can telnet to the remote cache OK and issue a stats command manually. The code above however fails with Use of initialized value $sock in ref-to-glob cast at ... Memcached.pm line 365 and a clutch of other similar errors. Does any learned Monk know how whether or not the client library should work under XP and if not, how it might be fixed?use strict; use warnings; use Data::Dumper; use Cache::Memcached; my $CACHE = new Cache::Memcached( { servers => [ "myremotecache.com:11 +211" ] }); print Dumper($CACHE->stats());
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Perl Memcached client under Windows XP
by Anonymous Monk on May 25, 2010 at 08:17 UTC | |
by brancusi (Novice) on May 25, 2010 at 22:25 UTC | |
|
Re: Perl Memcached client under Windows XP
by BrowserUk (Patriarch) on May 25, 2010 at 22:55 UTC | |
by brancusi (Novice) on May 27, 2010 at 11:09 UTC | |
by BrowserUk (Patriarch) on May 27, 2010 at 15:04 UTC | |
by brancusi (Novice) on May 28, 2010 at 08:12 UTC | |
by BrowserUk (Patriarch) on May 28, 2010 at 15:01 UTC | |
| |
|
Re: Perl Memcached client under Windows XP
by sagargupta (Initiate) on Oct 24, 2012 at 17:26 UTC |