Changes between Version 1 and Version 2 of Configuration2

Show
Ignore:
Timestamp:
06/03/13 17:18:45 (12 years ago)
Author:
jorisborgdorff
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Configuration2

    v1 v2  
    6868For convenience, the MUSCLE filters may be referred to by their name instead of their class: 
    6969{{{ 
    70 w.couple(r, {'dataOut', 'dataIn'}, ['multiply_0.5','console']) 
     70w.couple(r, {'dataOut' => 'dataIn'}, ['multiply_0.5','console']) 
    7171}}} 
    7272 
     
    7474The following fragment multiplies the data with a constant on the sending side, and prints it on the receiving side: 
    7575{{{ 
    76 w.couple(r, {'dataOut', 'dataIn'}, ['multiply_0.5'], ['console']) 
     76w.couple(r, {'dataOut' => 'dataIn'}, ['multiply_0.5'], ['console']) 
    7777}}} 
    7878 
     
    8484For large data sets it may increase performance to split the data into multiple chunks before compressing. In the following configuration, it gets sent in separate chunks and compressing is done in a separate thread from sending: 
    8585{{{ 
    86 w.couple(r, {'dataOut', 'dataIn'}, ['serialize','chunk_16','compress','thread'], ['decompress','dechunk_16','deserialize']) 
     86w.couple(r, {'dataOut' => 'dataIn'}, ['serialize','chunk_16','compress','thread'], ['decompress','dechunk_16','deserialize']) 
    8787}}} 
    8888