JSON-API 框架 GIN
- 授权协议: MIT
- 开发语言: Lua
- 操作系统: Linux
- 软件首页: http://gin.io/
- 软件文档: http://gin.io/docs/install.html
软件介绍
Gin 是一个 JSON-API 框架,目前还处于早期开发状态。
当你需要在性能和伸缩性要求很高时,Gin 对你会很有帮助。它运行于 OpenResty ,使用 Lua 编写。
下面是一个简单的 Gin 控制器:
local InfoController = {}
function InfoController:whoami()
return 200, { name = 'gin' }
end
return InfoController
The Definitive Guide to MongoDB
Peter Membrey、Wouter Thielen / Apress / 2010-08-26 / USD 44.99
MongoDB, a cross-platform NoSQL database, is the fastest-growing new database in the world. MongoDB provides a rich document orientated structure with dynamic queries that you’ll recognize from RDMBS ......一起来看看 《The Definitive Guide to MongoDB》 这本书的介绍吧!
