开发者

Most efficient method of generating PNG as HTTP response

I've built an ASP.NET page whose output stream is a dynamically-generated PNG image containing only text on a transparent background.

The text is based upon database IDs contained in the querystring. There will be a limited number of variations.

Which one of the following would be the most efficient means of returning the image to the client?

  1. Store each variation upon the first generation, and thenceforth retrieve this from the drive.
  2. Simply generate the image each time.
  3. Cache the output response b开发者_如何学Cased upon the querystring.


Totally depends on how often this image is going to have to be generated.

If it's a small project I would elect to generate it each time as this would be the simplest solution.

If you are expecting a lot of generations then storing the image each time it's generated and checking for pre generated images would be next, it gets a bit complicated though, all depends on how many unique variations of images you expect to be generated, if it is small, go for it, otherwise you may have to have expiry dates on the images that are not so frequently accessed.

In short, it depends on what the application of this is, and not enough information was given to give a comprehensive answer to your specific solution.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜