We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
我看整体架构依赖数据库,有点担心性能是否能应对高并发?我理解应该设计为分层架构,分不同模块,按需引入。底层的执行引擎不依赖数据库,上层的应用层按需引入状态模块。
The text was updated successfully, but these errors were encountered:
1、引入数据库主要是为了保证流程的存储和流程执行过程的记录,以及保证在中断后能够继续执行;可参考activiti。 2、在性能上,主要看并发量以及数据库层面的压力; 3、会考虑引入缓存,减少数据库交互;
Sorry, something went wrong.
理解,to B场景我感觉是可以的。如果支持toC场景,不清楚TPS大概都能到多少,to C场景我理解可能要用内存工作流(无状态),类似compileflow这样的,
No branches or pull requests
我看整体架构依赖数据库,有点担心性能是否能应对高并发?我理解应该设计为分层架构,分不同模块,按需引入。底层的执行引擎不依赖数据库,上层的应用层按需引入状态模块。
The text was updated successfully, but these errors were encountered: