How to optimize the performance of my application when doing HttpClient resequitions

0

I'm developing an app using Xamarin.Forms , but I have a problem. Settings such as color, company name, cover image and logo come through a request for a web service call whose return is a JSON , but every time I have that pull this information, which can affect the performance of my server. Is there a way to optimize this, such as a cache in which I make the request only once and whenever there is an update of the information?

    
asked by anonymous 03.07.2018 / 02:26

2 answers

0

Probably the most likely to consume your server-side traffic and memory is the sending of serialized images. In Xamarin you can use FFImageLoading, which has a cache system for images, and you can use it to avoid retrieving them from the server every time you run the application.

link

    
05.07.2018 / 16:34
0

Another option I recommend is when you start the application you download the pro app images and solve your problem ..

    
06.07.2018 / 11:45