Client side thumb creation OR Server side?
Posted
by Totty
on Stack Overflow
See other posts from Stack Overflow
or by Totty
Published on 2010-04-12T01:38:08Z
Indexed on
2010/04/12
1:43 UTC
Read the original article
Hit count: 472
Hy,
I have two options to choose from: Client side: pro: image manipulations occurs on the client side, so no load on the server cons: more uploaded data
Server side: pro: less uploaded data cons: image manipulations occurs on the server side, so there are some load and will be queried...
For example, when you upload an image, you will get 4 images: a large image, medium, thumb1, thumb2, so in the case of the client side will be needed to upload the 4 optimized images. For the server side, will be only uploaded 1 optimized image and then manipulated.
What is better and less consuming way?
© Stack Overflow or respective owner