Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Info

Depending on the runtime, the configuration file is located in the following place: Location of the configuration file


Defines the available communication buffers in the communication server.

  • BUFFERSIZE is the overall amount of memory to be used by all channels
  • MAXCHANNELS defines the number of channels that may be handled concurrently.

Since each channel needs separate send and receive channels the available communication buffer is BUFFERSIZE / (2*MAXCHANNELS)

Info

Most runtime use the default 4 MAXCHANNELS :

Code Block
[CmpChannelServer]

Buffersize=4000000
MaxChannels=4



Expand
titleChange number of channel Example:

If needed to increase to f.e.g. 8:

Code Block
[CmpChannelServer]

Buffersize=1600000
MaxChannels=8