Click here to Skip to main content
15,881,715 members
Articles / Internet of Things

Efficient HTTP Chunked Transfer Encoding for IoT Devices

Rate me:
Please Sign up or sign in to vote.
5.00/5 (5 votes)
26 Nov 2020MIT5 min read 9.3K   143   6  
Efficiently send large amounts of data with a tiny amount of memory
Sometimes, you may need to send large amounts of data, either uploading to a server, or sending from a server and you can't load the entire payload into scarce RAM on an IoT device. Existing libraries for these devices do not include HTTP chunked transfer encoding. Chunked transfer encoding allows for arbitrary length payload transfers, obviating the need for loading the entire payload into RAM.

Views

Daily Counts

Downloads

Weekly Counts

License

This article, along with any associated source code and files, is licensed under The MIT License


Written By
United States United States
Just a shiny lil monster. Casts spells in C++. Mostly harmless.

Comments and Discussions