呼吸二氧化碳

Results 10 comments of 呼吸二氧化碳

8错,测试的很详细。但我觉得你测试的代码的概念有点问题。 首先,要知道js是单线程运行的,虽然有什么setTimeout之类的东西可以让js异步操作,但是并不代表是多线程。 接下来我来说下你的测试代码 ``` javascript var time1 = (new Date()).getTime(); while(((new Date()).getTime()-time1) < 3000); ``` 这个东西并不是阻塞,而是把js跑死。阻塞和把线程跑死是两码事。 比如: ``` javascript for (var i=1; i

@happyfish100 我开发的一个统计系统正需要这样的功能,见 https://github.com/xindong/easy-total , 不过我Mac系统好像装不上(系统10.12.1),顺便帖下错误。 在 libfastcommon 里`./make.sh` 报错: ```bash ./make.sh: line 103: src/_os_define.h: Permission denied cp: Makefile: Permission denied cc -Wall -D_FILE_OFFSET_BITS=64 -D_GNU_SOURCE -g -O3 -DDARWIN -c -o shared_func.o...

@rtheunissen thank you. If it implement magic method `__set($key, $value)` can support it, like this php code: ```php class Ds\Map { function __set($key, $value) { $this[$key] = $value; } }...

@mururu I recommend you change to use lz4 compression, gzip is too bad.

I see buffer file is empty, meta file length 84, ASCII value of character is “0”, base64 encode is ``` AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA ``` file list like that: ``` ls -lh -rw-r--r--....

The Dockerfile I use is you provided in github. the problem occurred at #1895 . I don't know why there are so many residual buffer files. There were millions of...

We have the same problem. I send 3340095 at 10 minutes(~6000/s). after a few minutes I found very much logs: ``` 2015-10-13 17:06:18 +0800 [warn]: incoming chunk is broken: source="host:...

@repeatedly I use php td-agent client. td-agent version is 0.12.15. td-agent config is like: ``` type forward port 12400 type copy type file ...... type aws_s3 ...... type webhdfs .........

add option: ``` afterLoad: function(before, after){ after.item.querySelectorAll('.aos-init').forEach((el) => { el.classList.add('aos-animate') }) }, beforeLeave: function(before, after) { before.item.querySelectorAll('.aos-init').forEach((el) => { el.classList.remove('aos-animate') }) } ```