Open
Description
Related to wechaty/puppet-service#31
Currently the code logic for roomSearch
in wechaty-puppet
is not using batch operation, like below:
When the query
is passed to the function, it will do a Promise.all()
of all rooms, which might cause the problem that we've been fighting for a long time, the grpc issue. So I think we need to use batch operation for this method to avoid the grpc problem.