-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Excessive Memory consumption using ArduinoHttpClient & MKRGSM #97
Comments
Hi @anctsys i have made some test, really there is not a problem, the point is how the memory is managed. |
Hi @Rocketct Rocketct Thank you for your answer Bruno |
Hi @anctsys there are two overlaping issues here. the first is that static string objects within the httpclient object are "grow only", so this means that whenever you reveive a message that does not fit in the string object the realloc function is called causing old memory buffer to be released and a new one to be allocated. what will happen next is that even if you assign the string object with a smaller string it will keep the bigger buffer. this is wanted behaviour and means that you will always have an allocated buffer that is as big as the biggest message you received. |
Hi @pnndra and @Rocketct Thank You So Much |
Hi @anctsys, if you look at the header file for the http client library (https://github.com/arduino-libraries/ArduinoHttpClient/blob/7f36561e0bced5458516066ae09636e119cae0ed/src/HttpClient.h#L287) you'll see that there are several string variables. C++ string objects can only grow so even if you set them to "" they will stay same size. One thing you can do is to set them to empty string and then call the reserve method which will reallocate the buffer with the new size. Note that this will call realloc which will likely reuse the same pointer if you shrink the buffer and that will further fragment the memory. Anyway if you want you can add a new API that does this with all the string objects ( there are a few) in this class... |
Thank you |
Hi
I have an excessive memory consumption when i used methods responseStatusCode() & responseBody() more than 50%.I using the code you post for resolve arduino-libraries/ArduinoHttpClient#57
I also add a code to check memory using on the arduino.
Please can you help me
MyConfig is
Arduino MKR1400
ArduinoHttpClient : 0.4.0
MKRGSM : 1.4.2
Memory Consumtion Displaying on the terminal
The sketch is below
The text was updated successfully, but these errors were encountered: