You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RLE is a common algo. and probably nothing special, but in case of data streams with TEXT-type data, we can use RLE to optimize bytes used to transmit data records.
With an RLE data compression algorithm we can see:
12W1B12W3B24W1B14W
We need to implement a special char in IoText data protocol for this - "T" high letter as RLE compressed data identifier.
Example of record in IoText data protocol with suggested field type:
Little optimizations are not too bad, if we fighting with bytes in the transmission channel - for example in Narrow Band IoT or other thin options/transmission channels. Power consumption, it's a strongly connected aspect for battery-powered IoT devices.
The text was updated successfully, but these errors were encountered:
RLE is a common algo. and probably nothing special, but in case of data streams with TEXT-type data, we can use RLE to optimize bytes used to transmit data records.
Example text:
With an RLE data compression algorithm we can see:
We need to implement a special char in IoText data protocol for this - "T" high letter as RLE compressed data identifier.
Example of record in IoText data protocol with suggested field type:
in a typical TEXT field type, we will have the below message:
Little optimizations are not too bad, if we fighting with bytes in the transmission channel - for example in Narrow Band IoT or other thin options/transmission channels. Power consumption, it's a strongly connected aspect for battery-powered IoT devices.
The text was updated successfully, but these errors were encountered: