Tagged Questions
7
votes
15answers
4k views
How do I write a generic memoize function?
I'm writing a function to find triangle numbers and the natural way to write it is recursively:
function triangle (x)
if x == 0 then return 0 end
return x+triangle(x-1)
end
But attempting to ...
0
votes
1answer
87 views
Dynamic Image Caching
I have a CherryPy app that dynamically generates images, and those images are re-used a lot but generated each time. The image is generated from a querystring containing the variables, so the same ...