-1

URL of the image is like this

resize.php?image=imagename.jpg&w=100&h=100

and I want to cache the result in RAM. Can APC of php do it? how? Or I must install something else?

Mehdi Azizi
  • 51
  • 1
  • 12

1 Answers1

0

Yes, you can use APC to store the result in RAM. You just need to install APC module, and then add code to store /fetch resized versions inside APC using apc_store() and apc_fetch() functions.

Tero Kilkanen
  • 36,796
  • 3
  • 41
  • 63