Open
Conversation
Collaborator
Author
经过测试,编译性能有大幅度提升 |
Contributor
|
我自己研究下,谢谢你的建议 |
|
我们也遇到类似的问题,请问这个issue可以关了吗?谢谢! |
|
这个问题在4x版本修复了吗?我这边好像遇到了 如果表达式里面的条件太多 cpu好像就爆了 看着好像是ast解析出现了问题 |
|
最新的版本 4.0.9 这个问题依旧存在啊 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
和 issue #120 相关
虽然在 3.2.1 时 qlexpress 似乎优化过一次栈的使用,但是依旧栈的深度依旧很深,比如下面一段简单的脚本,最大栈的深度就高达 152:
线上稍微长一些的脚本就有很大的 stackOverflow 风险。所以我这里将语法分析部分改成了尾递归,跑过了所有单测,能够彻底解决编译栈深度过深的问题