庄铭宇

Results 9 issues of 庄铭宇

memset(update, 0, SL_MAX_LEVEL + 1); error size isn't it ? and make_node use 0 to build a value that may not init with arg 0

如文中所述 https://blog.csdn.net/zieckey/article/details/69803011#commentsedit 3种队列提供的百万级每秒的处理能力太差了。 不要把lambda当对象,而是当做流,用多线程写入单线程读取的流代替元素级并发队列。 最高可获取2500万/s的异步处理能力(1或2线程写单线程读@E3 1230v2 3.3GHz)!

enhancement

vs and gcc recognise %ld to be 32bit and 64bit. "%lld" to be 64bit. To cross platform we aways use int32_t int64_t, so we have to use PRI64d. It's disgusting.

laya.debugtool.js中有一行 __proto.render中有一行Stat.spriteCount++;非常怪异,它没有配对的-- 这令统计面板里的Sprite项每秒钟增加1000+,请问这有何深意? 还是单纯的写错呢

I get a nif and kf from an 2012 game (gamebryo 2.5). I load the nif and then Attach .kf, I got a msgbox: "error occurred while attaching .KF" "this...

Does "layer" and "layerselect" support? when I try to use that, may be something wrong happend : a part of nodes or nothing will be rendered.

while TcpSocket::Impl::connect has timeout_ms arg, but TcpConnection didn't pass this arg. close() outside seems useless when connecting. ``` // http is kuma::HttpRequest std::function fReconnect = [&] { puts("Reconnect"); http.close(); http.sendRequest("GET",...

KeyValuePair(K k, V v) : key(std::move(k)), value(std::move(v)) {} to template KeyValuePair(KK&& k, VV&& v) : key(std::forward(k)), value(std::forward(v)) {}

memimem bug: code: if (*sp == *pp) does not ignore case.