1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-02 14:23:27 +00:00
beego mirror
Go to file
2013-07-26 01:59:44 -07:00
cache fix #91 2013-07-16 19:05:44 +08:00
docs update zh docs 2013-07-26 16:41:11 +08:00
example add docs about how to write api application 2013-07-09 16:43:03 +08:00
session delete session's cookie Expires 2013-06-25 23:08:47 +08:00
validation update README 2013-07-24 12:36:46 +08:00
.gitignore add git ignore file 2013-06-01 13:31:14 +08:00
beego.go add to beego 2013-07-25 15:50:16 +08:00
cache.go fix cache bug 2013-03-26 22:31:54 +08:00
config.go support copy requestbody 2013-07-08 23:12:31 +08:00
context.go setcookie set to unique. fix multi setcookie 2013-07-23 21:54:45 +08:00
controller.go Add ParseForm function for *Controller 2013-07-25 22:27:25 +08:00
errors.go Fixed bug: error page cannot show correct corresponding status code 2013-07-18 14:42:45 +08:00
log.go I guess write would be better 2013-07-25 19:04:26 +08:00
model.go simplify beego 2012-12-17 22:15:21 +08:00
pprof.go refactor: use switch instead of if/else to select ProfController type 2013-01-03 23:19:13 -07:00
README.md add static global function & add seocms example 2013-06-25 18:49:08 +08:00
reload.go fix close err 2013-06-26 23:34:32 +08:00
router.go MethodByName 2013-07-25 16:08:18 +08:00
safemap_test.go add safemap and test 2013-03-28 15:25:49 +08:00
safemap.go add safemap and test 2013-03-28 15:25:49 +08:00
template.go remove markdown 2013-07-25 16:40:37 +08:00
utils_test.go Fix utils test fail 2013-07-26 16:56:25 +08:00
utils.go Merge branch 'master' of https://github.com/astaxie/beego into form 2013-07-26 16:29:22 +08:00

beego

Build Status

beego is a Go Framework which is inspired from tornado and sinatra.

It is a simply & powerful web framework.

Features

  • RESTFul support
  • MVC architecture
  • Session support (store in memory, file, Redis or MySQL)
  • Cache support (store in memory, Redis or Memcache)
  • Global Config
  • Intelligent routing
  • Thread-safe map
  • Friendly displaying of errors
  • Useful template functions

Documentation

English

API

中文文档

LICENSE

beego is licensed under the Apache Licence, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0.html).

Use case