// // mcached_update.bsh // // Sep/01/2015 // // -------------------------------------------------------------- source ("/var/www/data_base/common/bsh_common/text_manipulate.bsh"); source ("/var/www/data_base/common/bsh_common/mcached_manipulate.bsh"); // -------------------------------------------------------------- System.out.println ("*** 開始 ***"); key = bsh.args[0]; population = Integer.parseInt (bsh.args[1]); System.out.print (key + "\t"); System.out.println (population); final String server = "localhost"; final int port = 11211; mcached_update_proc (server,port,key,population); System.out.println ("*** 終了 ***"); // --------------------------------------------------------------