本文介绍了是否有一个免费的在线数据缓存服务?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我建立一个混搭,从相当慢的外部API获取数据,并在客户端进行处理。为了加快速度,我想补充一个简单的缓存,这将在线存储处理的结果,但我不想买一个专用的服务器。是否有一个免费的在线服务来缓存任何JSON / XML /文本使用AJAX的数据?
I am building a mashup, which gets data from rather slow external API and processes it at client side. To speed things up, I would like to add a simple cache which will store processed results online, but I don't want to buy a dedicated server. Is there a free online service to cache any JSON/XML/text data using AJAX?
推荐答案
我已经找到了一些解决方案:
I've found some solutions:
- <一个href="http://developer.yahoo.com/yql/console/?q=select%20%2a%20from%20yahoo.caching%20where%20cache_key%20=%20%27some%20key%27%20and%20%20cache_value%20=%20%27some%20value%27%20and%20timeout%20=%20%27604800%27%20and%20put%20=%20%271%27">YQL缓存 - 免费2000请求/小时/ IP
- OpenKeyVal - 免费64KB桶
- IronCache - 免费100MB和放大器; 10M请求/月
- GarantiaData A> - 免费25MB内存缓存
- 解析 - 免费1M请求/月
- 亚马逊ElastiCache - 微缓存节点的免费750H
- 火力地堡 - 免费的100MB存储
- MemCachier - 免费25 MB内存缓存
- YQL Caching - free 2000 requests/hour/IP
- OpenKeyVal - free 64KB buckets
- IronCache - free 100MB & 10M requests/month
- GarantiaData - free 25MB in-memory cache
- Parse - free 1M requests/month
- Amazon ElastiCache - free 750h of Micro Cache Node
- Firebase - free 100MB storage
- MemCachier - free 25 MB in-memory cache
如果你知道更多,请展开此列表。
If you know more, please expand this list.
这篇关于是否有一个免费的在线数据缓存服务?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!