Skip to content
New issue

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

No support for Parallelism #477

Open
LeeMatthewHiggins opened this issue Jul 29, 2024 · 1 comment
Open

No support for Parallelism #477

LeeMatthewHiggins opened this issue Jul 29, 2024 · 1 comment
Labels
kind/enhancement New feature or request

Comments

@LeeMatthewHiggins
Copy link

Am I missing something? using wrong?
It looks like the current system will only handle one request at a time????

run.dart line 27
shelf_io.serve(
Does not have shared = true
and No isolates are created

I have functions running on cloudrun that mostly call other services, it would be good to be able to process more than one at a time.

@kevmoo
Copy link
Collaborator

kevmoo commented Jul 29, 2024

Correct, the current configuration does not (explicitly) support multiple isolates, but I/O in Dart is concurrent, so you WILL be handling (many) more than one request at a time.

But this is a good feature request!

@kevmoo kevmoo added the kind/enhancement New feature or request label Jul 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants