t0ne's avatar
Level 4

What is the purpose of Intervention ImageCache?

What is the purpose of Intervention ImageCache? Why and when should i use it? When i upload an image i create and store multiple images with their own size, like small, medium, large and use them in my views. thanks in advance!

0 likes
5 replies
t0ne's avatar
Level 4

Well.. I can see how to use it but i don't understand when to use it.

Can i upload an original image and use imagecache in my website to receive to right format or should i create and store different formats/sizes in the backend and call these images in my website.

pmall's avatar

Seems like instead of re-doing modifications like resize each time the image is requested (which is performance consuming), it saves the modifications in a new file and serve it on subsequent requests.

t0ne's avatar
Level 4

Thanks for reply!

Example: when i upload an image from my cms i also create a thumbnail and use to create a list of images. /images/thumbnail/image.jpg

Or is better to just upload an image and when want to create a list of images, use imagecache, for example /imagecache/small/image.jpg

pmall's avatar
pmall
Best Answer
Level 56

The point of image cache is to use solution 2 so you don't have to worry about creating thumbnails

1 like

Please or to participate in this conversation.