实现HTTP部分功能

This commit is contained in:
GoEdgeLab
2020-09-26 08:07:24 +08:00
parent 2bdb5c232a
commit 7e5a446cb3
52 changed files with 1120 additions and 391 deletions

View File

@@ -0,0 +1,17 @@
package serverconfigs
import (
"regexp"
"testing"
"time"
)
func TestHTTPLocationConfig_Match_Reg(t *testing.T) {
randString := "1024"
reg := regexp.MustCompile(`(?P<num>\d+)`)
before := time.Now()
subNames := reg.SubexpNames()
match := reg.FindStringSubmatch(randString)
t.Log(time.Since(before).Seconds()*1000, "ms")
t.Log(subNames[1], "=", match[1])
}