Xudong Cai
Xudong Cai
In unit tests varibales with "." in the name is allowed ``` // it 'parses varibales with "." in the name' do // expect(env('FOO.BAR=foobar')).to eql('FOO.BAR' => 'foobar') parseAndCompare(t, "FOO.BAR=foobar", "FOO.BAR",...
https://github.com/mojocn/base64Captcha/blob/1a6d007056a31d2525bb29780d37fc396634caee/captcha.go#L51 Store.verify should be used here, otherwise custom case-insensitive authentication cannot be implemented
Variables behave inconsistently when using batch inserts ``` people := []Person{} db.Select(&people, "SELECT * FROM person ORDER BY first_name ASC")
由于PHP的特性,每个请求都会connectNsqd,请问此时是扩展接管TCP连接池还是每次都会重新创建一个TCP链接,所以每次请求结束,都需要在__destrct函数中close NSQ链接避免NSQ连接数爆掉? 扩展在publish的时候属于那种情况?希望能帮忙解答,谢谢!
[在此处输入反馈] 从v2切换到v3,在开发调试的时候,发现获取配置接口参数group调整为groupName,但这不是重点,重点是调试的时候发现参数错误的时候,接口居然返回一段文本,而非json格式 ```json { "code": 0, "message": "success", "data": {} } ``` 当前返回的是一段文字: ``` caused: Required parameter 'groupName' type String is not present; ``` 按照理解难道不应该返回类似如下结构: ```json { "code": 10002, "message":...