// ------------------------------------------------------------------- // mcached_read.vala // // Feb/04/2014 // // ------------------------------------------------------------------- using GLib; using Json; // ------------------------------------------------------------------- static int main (string[] args) { stdout.printf ("*** 開始 ***\n"); string hostname = "localhost"; var port = 11211; string[] keys = {"t1731","t1732","t1733","t1734","t1735","t1736","t1737","t1738","t1739"}; mcached_read_proc (hostname,port,keys); stdout.printf ("*** 終了 ***\n"); return 0; } // -------------------------------------------------------------------