http://www.perlmonks.org?node_id=647458


in reply to Duplicate Randoms with SSI

Crazy idea: Make an image server daemon and make your SSI calls to a light-weight client that just requests an image from the daemon. The daemon would keep track of the last 5 (for instance) images that it just served and know not to serve them again.

Replies are listed 'Best First'.
Re^2: Duplicate Randoms with SSI
by gwhite (Friar) on Oct 26, 2007 at 18:52 UTC

    Not sure it is crazy, I have thought about implementing this with mod_perl so it is constantly running. With the quantity of visitors I get, I would need to keep a list of IP addresses or session IDs or something to keep track of what went to each user, I think what you are suggesting is not too far off this.

    g_White