可执行文件的 CDN
在我的新网站上,我使用其中一个每页显示大约 50-60 个缩略图/wordpress.org/extend/plugins/amtythumb/" rel="nofollow">插件。
关于插件:
- 对于每个请求的帖子 ID,它 从中提取帖子内容 DB 并找出图像 url。
- 它为找到的内容生成缩略图 图片网址。
我想在生成缩略图时尽量减少对服务器的点击次数。如果服务器启用了缓存,那么它可以减少许多点击。但我愿意将第二部分与插件分开,并将其托管在任何其他服务器/CDN 上,我/其他人可以请求生成缩略图,无需任何费用。
我尝试过免费的虚拟主机提供商。但我觉得他们通常在大部分时间里都很慢/慢。
请建议方法或 CDN(如果有)...
或者任何可以调整图像大小/缩放/裁剪/编辑图像的在线图像 api(如果我传递图像 url)。
On my new site, I display around 50-60 thumbnails per page using my one of the plugin.
About plugin:
- For every requested post id, it
extracts content for the post from
DB and find out the image url. - It generates thumbnail for found
image URL.
I wanted to minimize number of hits to the server in generating the thumbnail. If server is cache enabled then it can reduce many of the hits. But i was willing to separate the 2nd part from the plugin and to host it on any other server/CDN where i/other can request to generate thumbnail without any charges.
I tried free webhosting provider. but i felt they are generally slow/down maximum of time.
Please suggest the approach or CDN, if any...
Or any online image api which can resize/zoom/crop/edit an image, if i pass the image url.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到一个可以免费生成图像缩略图的可靠服务器/CDN 非常困难(几乎不可能)。
TANSTAAFL
假设你的插件使用几个标准的 WordPress 功能,您也许可以使用另一个插件来获取生成的缩略图并将其上传到另一个服务器。我推荐 W3 Total Cache。
您还可以尝试 CoralCDN 来减轻服务器的负载。
所以:您可以使用 CoralCDN(或类似的),只需通过它指向缩略图的 URL,或者您可以使用 W3TC 等缓存插件将文件上传到 Amazon S3 等几乎免费的网站。
It will be very hard (almost impossible) to find a reliable server/CDN that will generate thumbnails of images for free.
TANSTAAFL
Assuming your plugin uses several standard wordpress function, you might be able to use another plugin which takes the generated thumbnails and uploads them to another server. I recommend W3 Total Cache.
You could also try CoralCDN to take some load off your server.
So: You can use CoralCDN (or similar) and just point the URLs of your thumbnails through it, or you can have a caching plugin like W3TC upload the files to an almost-free site like Amazon S3.