Async Route feature with Callback and Server-Sent Events (SSE) support#1385
Open
mdaneri wants to merge 65 commits intoBadgerati:developfrom
Open
Async Route feature with Callback and Server-Sent Events (SSE) support#1385mdaneri wants to merge 65 commits intoBadgerati:developfrom
mdaneri wants to merge 65 commits intoBadgerati:developfrom
Conversation
Move not essential property from route
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.
This commit introduces the Async Route feature for Pode, including Callback and Server-Sent Events (SSE) support for improved asynchronous communication.
Benefits:
Improved Responsiveness: Async Routes enable your Pode application to handle multiple requests concurrently, reducing response times and improving overall system responsiveness.
Scalability: By creating independent runspace pools, you can efficiently manage resources and scale your application to handle increased loads or complex tasks.
Enhanced Security: With Pode's security features integrated with Async Routes, you can ensure that only authorized users have access to sensitive information and operations.
Flexible Task Management: Async Routes provide a unified interface for managing asynchronous tasks, allowing you to easily create, stop, query, or callback on running tasks.
New Features:
Async.ps1file to support the Async Route feature. These functions facilitate the creation, management, and execution of asynchronous tasks within Pode, providing developers with more flexibility and control over async operations.New Functions:
Features
Independent Runspace Pools:
Security:
Callback Support:
SSE Support:
Tests:
Async-Computing.ps1, which evaluates the performance with 100 concurrent runspaces and over 250 parallel requests, ensuring the feature can handle high load scenarios.Example Usage:
Add-PodeAsyncGetRoute:
Add-PodeAsyncStopRoute:
Add-PodeAsyncQueryRoute:
Set-PodeAsyncRoute:
Other functions:
Get-PodeQueryAsyncRouteOperation:
Get-PodeAsyncRouteOperation:
Stop-PodeAsyncRouteOperation:
Test-PodeAsyncRouteOperation:
Are the internal functions equivalent to route operations. The only difference is that there is no security involved. The main purpose of these functions are manipulate the internal state of the async routes.