Bomin Zhang

Results 37 issues of Bomin Zhang

The below example is a minor revised version of the one in the README: ```go package main import ( "net/http" "github.com/rs/cors" ) func main() { mux := http.NewServeMux() mux.HandleFunc("/", func(w...

I'm using mysql driver and need to join the result of another query, for example: ``` tran.Join("LEFT", "(SELECT template_id Id, COUNT(1) Heat FROM Ad GROUP BY template_id) AS h", "t.TEMPLATE_ID...

enhancement

问题应该和 #1327 一样,但那个问题解决后并未分享解决方案,后面还有很多人遇到同样问题。 ![image](https://user-images.githubusercontent.com/504447/61992880-a2894980-b096-11e9-808c-46ca4aa4601e.png) 我不是前端程序员,所以用的是CDN方式,代码如下: ```html ```

Currently, some objects in Easegress belong to a namespace (TrafficGates and Pipelines), and we need to use `///` to access their information, while other objects do not belong to a...

Components like filters and controllers often need persistent data and share the data inside the cluster, we already have the [Custom Data](https://github.com/megaease/easegress/blob/main/doc/reference/customdata.md) for this but it is too complex to...

enhancement

Currently, Easegress only reports metrics of itself, but for some issues, like https://github.com/megaease/easegress/issues/413, the root cause is on the ETCD side, so it would be helpful for troubleshooting if Easegress...

Currently, if a user has access to Easegress admin API, he/she has full control of Easegress. As new features of Easegress begin to store some sensitive data, such as SSL...

enhancement

* avoid some memory allocation * early return instead of always process all input

**Describe the bug** Routing by HTTP method results in "405 Method Not Allowed" **To Reproduce** Steps to reproduce the behavior: 1. Config an HTTP server with routing rules like below:...

enhancement