// // mcached_delete.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]; System.out.println (key); final String server = "localhost"; final int port = 11211; mcached_delete_proc (server,port,key); System.out.println ("*** 終了 ***"); // --------------------------------------------------------------