Changeset 15797

Show
Ignore:
Timestamp:
07/14/08 18:30:33 (5 years ago)
Author:
33rpm
Message:

correct errors

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/Mvalve/trunk/lib/Mvalve.pm

    r15780 r15797  
    279279    queue => { 
    280280      module => "...", 
    281       connect_info => [ ... ] 
     281      args => { 
     282        connect_info => [ ... ] 
     283      } 
    282284    }, 
    283285    throttler => { 
     
    319321     destination VARCHAR(40) NOT NULL, 
    320322     message     BLOB NOT NULL 
    321   ) ENGINE=QUEUE DEFAULT CHARSET=UTF-8 
     323  ) ENGINE=QUEUE DEFAULT CHARSET=utf8 
    322324  
    323325  CREATE TABLE q_timed ( 
     
    325327     ready       BIGINT NOT NULL, 
    326328     message     BLOB NOT NULL 
    327   ) ENGINE=QUEUE DEFAULT CHARSET=UTF-8 
     329  ) ENGINE=QUEUE DEFAULT CHARSET=utf8 
    328330  
    329331  CREATE TABLE q_incoming ( 
    330332     destination VARCHAR(40) NOT NULL, 
    331333     message     BLOB NOT NULL 
    332   ) ENGINE=QUEUE DEFAULT CHARSET=UTF-8 
     334  ) ENGINE=QUEUE DEFAULT CHARSET=utf8 
    333335 
    334336You also need to setup a memcached compatible distributed cache/storage.