初绎

Results 70 comments of 初绎

*sorry for my poor english.* I think builder can just print an error when `noEmitOnError` is true (and refuse to run build at all) Mapping codes is a great feature,...

submodule also break cache: (/docs is a submodule) ``` Error calculating the state of the repo. (inner error: Error: git hash-object exited with status 128: fatal: Unable to hash docs...

also need run binary in `node_modules/.bin`

碎片在录制时主要影响就是要在数据和文件表之间来回寻道。 只有内存(或ssd)缓存可以解决这个问题。 对磁盘做什么操作并没有什么用。 预分配不合逻辑:如果空文件(快)用完了,这时候磁盘必须专门写0,不能同时录像,否则这部分录像和0文件就一起碎了。这时候录像只能在内存里,那么最终还是个内存缓存。虽然确实解决了碎片问题,**但软件复杂度和崩溃的风险一点都不会少** 解决碎片问题,就是用内存缓存(池)。弄一个可以设置大小的缓存,每个直播间都申请这么大的内存,网络数据先缓存起来,哪个满了就申请新缓存,然后把满的写入并回收。 我一般不考虑程序崩溃的问题。。。录像断了1秒钟和1分钟的结果是一样的。。。重要的录像当然是多人多点同时录。。。 至于内存占用,条件差的设置个32MB,这么大的碎片基本上已经不影响转封装时读取了,按机械硬盘100M/s写入、每个直播间5M/s算,50个直播间跑满也才1.6G内存,全部双缓存也就不到4G,谁真有这么高需求,肯定也不差这么点内存了。。

新电脑加载非常轻松,但是他这个缓动效果能卡死2分钟,然后就无比流畅 不知道能不能让他不要缓动,或者干脆不要任何动画

启动时指定:`./xxxx-gdb hello_world` load后会中断再第一个指令前

I confirm this issue(?) to solve: (one of) 1. rename `index.d.ts` to `public.d.ts` (or any other), and set `"types": "./public.d.ts"` in `package.json` 1. add `index.js` to `.npmignore` **Why:** * typescript...

Need this too. Match order and sort order should be separated. ## Current logic: with rule: `[{"regex": "^b"}, {"regex": "^a"}]`, to decide where `import "a-package"` go: 1. try "^b", fail...

Need this too. Match order and sort order should be separated. ## Current logic: with rule: `[{"regex": "^b"}, {"regex": "^a"}]`, to decide where `import "a-package"` go: 1. try "^b", fail...