tmaic 是一套簡潔、優雅的Golang Web開發框架(GoLang Web Framework)。支援mysql,mssql等多型別資料庫,它可以讓你從麵條一樣雜亂的程式碼中解脫出來;它可以幫你構建一個完美的網路應用,而且每行程式碼都可以簡潔、富於表達力。
資料模型以下是例子package modelsimport ( "github.com/pangxianfei/framework/helpers/m" "github.com/pangxianfei/framework/helpers/ptr" "github.com/pangxianfei/framework/helpers/zone" "github.com/pangxianfei/framework/model")type User struct { model.BaseModel ID *uint `gorm:"column:user_id;primary_key;auto_increment"` Name *string `gorm:"column:user_name;type:varchar(100)"` Email *string `gorm:"column:user_email;type:varchar(100);unique_index;not null"` Password *string `gorm:"column:user_password;type:varchar(100);not null"` CreatedAt *zone.Time `gorm:"column:user_created_at"` UpdatedAt zone.Time `gorm:"column:user_updated_at"` DeletedAt *zone.Time `gorm:"column:user_deleted_at"`}func (user *User) TableName() string { return user.SetTableName("user")}func (user *User) SetNameAttribute(value interface{}) { user.Name = user.Email}func (user *User) GetUpdatedAtAttribute(value interface{}) interface{} { return user.UpdatedAt //查詢後這裡可以其他處理,如格式化處理,如果是時間time 可以格式成 2020-10-01 18:00:20}
生成公鑰檔案tmaic.CreateRsaKey()
系統函式加密解密函式公鑰加密s,_:= tmaic.Encryption("Golang使用RSA進行公鑰加密私鑰解密,私鑰加密公鑰解密的實現")
私鑰解密dd,_ := tmaic.Decrypt(s)
私鑰加密s,_:= tmaic.PrivateEncryption("Golang使用RSA進行公鑰加密私鑰解密,私鑰加密公鑰解密的實現")
公鑰解密dd,_ := tmaic.PublicDecrypt(s)
校驗密碼是否正確user.Password:使用者密碼(已加密)
requestData.Password:要校驗的密碼(明文)
if !crypt.BcryptCheck(user.Password, requestData.Password) error{ return "返回提示資訊"}
注意事項:如果要使用 NSQ 佇列的,不用將包註釋
匯入包:
"github.com/pangxianfei/framework/queue"
"tmaic/app/events"
"tmaic/app/jobs"
"tmaic/app/listeners"
以下去掉註釋即可:
//queue.Initialize()
//jobs.Initialize()
//events.Initialize()
//listeners.Initialize()
NSQ安裝請參考:https://nsq.io/overview/quick_start.htmlnsq啟動1.nsqlookupd
2.nsqd --lookupd-tcp-address=127.0.0.1:4160
3.nsqadmin --lookupd-http-address=127.0.0.1:4161
執行以上命令後:http://127.0.0.1:4171 可檢視監控臺
佇列demo (test)*** 詳情見工程專案下
入列(我們常說的寫入 topic,生產者),以下寫入topic例子 test := events.Test{} testparam := &pbs.Test{ Id: uint32(userId), } test.SetParam(testparam) if errs := hub.Emit(&test); errs != nil { log.Info("user test", tmaic.Output{"event": test, "errors": errs}) }
出列(啟動一個觀察者) func init() { hub.Register(&Test{})}type Test struct { user models.User hub.Listen}func (user *Test) Name() hub.ListenerName { return "add-test" //監聽器名稱 後面我們會用到}func (user *Test) Subscribe() (eventPtrList []hub.Eventer) { log.Debug("Subscribe-test") return []hub.Eventer{ &events.Test{}, }}func (user *Test) Construct(paramPtr proto.Message) error { /** 第一執行這裡 業務程式碼 */ log.Debug("Construct-test") return nil}func (user *Test) Handle() error { /**第二執行這裡 最終實現業務邏輯 :比如發郵件、訊息推送、簡訊通知等 這些業務通常封裝在 service 層,這裡只是建議 */ // 更新 t := users.UserService.Get(cast.ToInt64(user.ID)) t.Email = user.Email //test 其實沒有這個欄位 根據需要自行組織 t.Name = user.Name //test 其實沒有這個欄位 根據需要自行組織 _ = users.UserService.Update(t) log.Debug("Handle-test") return nil}
實現消費,在根目錄與main.go同級,go run artisan.go queue:listen test-add //test-add 是Name() 返回的 配合supervisor程序守護
型別轉化助手ToInt64cast.ToInt64()
ToInt32
cast.ToInt32()
ToFloat32
cast.ToFloat32()
更多方法 檢視cast包列印
tmaic.Dump(mugs)
mugs := map[string]interface{} { "password2" : map[string]string { "password3" : "The name cannot be empty", }, } //效果 { "password2": { "password3": "The name cannot be empty" } }
效能測試虛擬機器環境下:壓力測試ab -c 1000 -n 5000 -k http://127.0.0.1/all
安裝教程git clone [email protected]:pangxianfei/tmaic.gitgo mod init // 初始化go mod 包管理go mod tidy // 載入依賴包go mod vendor // 將依賴包複製到專案目錄中去go run main.go