- 授权协议: BSD
- 开发语言: Python
- 操作系统: 跨平台
- 软件首页: https://github.com/mikeboers/PyMemoize
- 软件文档: https://github.com/mikeboers/PyMemoize
软件介绍
PyMemoize 是一个相对简单的 Python 缓存模块,可以用来存储任意的类 dict 的数据。
示例代码:
# Make a store.
store = {}
# Initialize the cache object.
from memoize import Memoizer
memo = Memoizer(store)
memo.exists('basic')
# return > True
memo.delete('basic')
memo.exists('basic')
# return > False
memo.get('basic', basic_func)
# stdout > called
# return > 123
Ajax与PHP Web开发
达里 / 王德民、王新颖、刘昕 / 人民邮电出版社 / 2007-4 / 39.00元
本书指导读者使用Ajax、PHP及其他相关技术建立快速响应的网页。本书不仅从Ajax的客户端和服务器端技术两个方面指导读者逐步掌握Ajax基础应用,还通过实例详细演示了Ajax表单验证、Ajax聊天室、Ajax Suggest、使用SVG实现的Ajax实时绘图程序、Ajax Grid、Ajax RSS阅读器和Ajax拖放等的实现过程。同时还介绍了在Windows和UNIX系统下的应用程序环境配置和......一起来看看 《Ajax与PHP Web开发》 这本书的介绍吧!
