xiaog
xiaog
I can't find any API that convert `Value` to a map, just like gson does: ``` m, ok := gjson.Parse(json).Value().(map[string]interface{}) ```
I didnot found `--bwlimit` option to limit transfer speed. Sometimes we donot want rsync client to exhaust my bandwidth on server.
1. when there's two datetime(6) columns in table, and the first is change to invalid date like '00-00-00 00:00:00.000000',the second parse fail I think it's because that the first microsecond...
'0000-00-00 00:00:00' is a invalid datetime but it can be inserted in `datetime` column type. If I have `f_time datetime NOT NULL` defined, the parsed value in row event is...
wiki里面说atlas维护了一个连接池,`min-idle-connections`在1.x版本里有这个参数,在2.x取消了。那么请问atlas的连接池连接数是怎么控制的呢,这个不应该交给用户去配置吗? 而且经过我实际测试的情况,我用sysbench设置线程数120,db端也有120个连接,测完后,mysql数据库上的连接数也一直保持120,哪怕空闲。如果有更高的连接数进来会继续往上涨,感觉不科学,还是哪里有配置?
3 meta-node, 4 data-node,写入设置`--replication-factor=2` 此时 stop 1 个 influxd,在其它节点查询时 节点会一个个全 crash 掉,必现 ``` panic: runtime error: invalid memory address or nil pointer dereference [signal SIGSEGV: segmentation violation code=0x1 addr=0x18 pc=0x9a1650]...
我的表单不一定都是标准的 ModelForm,比如我有个Multi-select框,似乎因为这个项目里用了vuejs,无法使用django的form来渲染?
我看到代码里有许多地方的 序列化类的Meta里,有 `read_only_fields`,但我用在自己的类里面,没有效果。 我想的是在 list_display_fields 的字段,到update页面之后,只读的是灰掉不可编辑,而不是消失,请问需要哪些改动呢