#! /usr/bin/perl # # mcached_perl_update.pl # # Jun/23/2010 # --------------------------------------------------------------------- use strict; use warnings; # use Cache::Memcached; use JSON; # use CGI qw (:standard); # use DBI; use lib '/var/www/data_base/common/perl_common'; use cgi_manipulate; use text_manipulate; use mcache_manipulate; use kvalue_manipulate; # my $memcached = Cache::Memcached->new({ servers => ["127.0.0.1:11211"]}); # # # print "Content-type: text/html\n\n"; # # my @arry_bb = cgi_manipulate::parse_parameter (); # print "*** mcached_perl_update.pl *** start ***
"; # my $it=0; foreach (@{$arry_bb[0]}) { my $id = $arry_bb[0][$it]->{id}; my $population = $arry_bb[0][$it]->{population}; print "$id $population
"; mcache_manipulate::mcache_update_proc ($memcached,$id,$population); $it++; } # print "*** mcached_perl_update.pl *** end ***
"; # # --------------------------------------------------------------------- #