Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 6 days ago.
I need to transfer Large amount of Json file content from the server side to Angular side.
I am using Web api(c#) as the back end service and Angular 7 as the font end.
Json file is around 20 MB. So I have compressed the Json file using LZ compression from the server and I could able to decompress the file from the Angular website.
But the file size after the LZ compression is still around 8 MB. I need to make it to more smaller file. Can anyone recommend better compression scheme so that I can reduce the file size and transfer file from the server side to Angualar side.?
Also can I zip those compressed file from the server , then transfer it to the client side and unzip those LZ compressed file from the Angular side?