1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-02 09:23:27 +00:00
beego mirror
Go to file
2013-07-08 15:13:51 +08:00
cache fix cache's bug expird is not changed by get method 2013-07-04 13:02:11 +08:00
docs sync quickstart. 2013-06-27 00:24:06 +08:00
example/chat support websocket #20 2013-04-08 00:28:32 +08:00
session delete session's cookie Expires 2013-06-25 23:08:47 +08:00
.gitignore add git ignore file 2013-06-01 13:31:14 +08:00
beego.go fix #90 2013-07-07 17:58:50 +08:00
cache.go fix cache bug 2013-03-26 22:31:54 +08:00
config.go fix #90 2013-07-07 17:58:50 +08:00
context.go fix #69 refer to http://www.php.net/manual/zh/function.setcookie.php 2013-07-08 15:13:51 +08:00
controller.go fix #87 2013-07-02 09:45:12 +08:00
errors.go fix error info tempalte's title 2013-06-24 23:59:06 +08:00
log.go fix log delete 2013-06-29 14:39:02 +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 fix #90 2013-07-07 17:58:50 +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 add EnableGzip support & delete if views not exist 2013-04-21 00:49:48 +08:00
utils.go fix bug substr 2013-06-24 23:24:33 +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