Ignore:
Timestamp:
08/31/22 17:23:56 (22 months ago)
Author:
ymipsl
Message:
  • Optimize remote connector computation in case of read (reverse way).
  • don't compute anymore clientFromServerConnector (and all intermediate computation) for non reading case.

YM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XIOS3/trunk/src/node/field.cpp

    r2326 r2397  
    14661466    getRelFile()->sendFileToFileServer(client); 
    14671467    sentGrid_ = grid_-> duplicateSentGrid() ; 
    1468     sentGrid_->sendGridToFileServer(client); 
     1468    sentGrid_->sendGridToFileServer(client, false); 
    14691469    name = getFieldOutputName() ; 
    14701470    this->sendAllAttributesToServer(client); 
     
    14771477    getRelFile()->sendFileToFileServer(client); 
    14781478    sentGrid_ = grid_-> duplicateSentGrid() ; 
    1479     sentGrid_->sendGridToFileServer(client); 
     1479    sentGrid_->sendGridToFileServer(client, true); 
    14801480    read_access=true ; // not the best solution, but on server side, the field must be a starting point of the workflow 
    14811481                       // must be replace by a better solution when implementing filters for reading and send to client 
Note: See TracChangeset for help on using the changeset viewer.