hightman
hightman
> My app code base has `root` and `home` module following the nav2 example. I try to remove the `root`from modules and from `app_pages.dart` because I feel like It is...
I have read some codes about GetRouterOutlet, It seems impossible to solve this problem due to its implementation. You can try to use another route management library named Routemaster. Finally,...
> Is this issue resolved? I am also facing same issue. On go to new route it is deleting previous route Did you define `participatesInRootNavigator` as `true` in some pages?...
I have been studying GetX's Nav2 for some time. You should use `GetRouterOutlet.pickPages` or `filterPages` to customize which GetPages should be placed in the current navigation stack.
However, in your example, you only need to remove the `participatesInRootNavigator ` option from the settings page.
> > However, in your example, you only need to remove the `participatesInRootNavigator ` option from the settings page. > > Hello! I tried to remove `participatesInRootNavigator` param. it worked,...
Now you can refer to my sample code, which has implemented page state preservation. https://github.com/hightman/getx5-example_nav2
从你的描述看应该是这个应用场景导致了这样的结果,我建议你采用限制 import 进程数据的办法,待其它进程退出后其它 project 再唤起 import.
刚看了下代码,本身默认限制 5个 import 进程呀?你们是自己改大了吗。
> > 刚看了下代码,本身默认限制 5个 import 进程呀?你们是自己改大了吗。 > > [`db_commit_check`](https://github.com/hightman/xunsearch/blob/8b9191daab6209b2d9281e4438b9d652bf53ba08/src/indexd.c#L253)里的条件是`import_num >= MAX_IMPORT_NUM && db->count > MIN_COMMIT_COUNT`,限制5个进程的同时还要满足`db->count > MIN_COMMIT_COUNT`条件,而此时如果db->countcount小于100条才发生这问题的,没能限制的了import数量 那你们可以把 db->count 这个条件取消,当时想的是如果数据量少提交也很快就不提示 too busy