-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Every time a DataStorage run endpoint is hit, the generation of the query can take a while. To speed this up we can:
- Save the query with the request properties
- Send a new endpoint back to the user (The user can then use the same link to get that data)
What would be nice if if we can modify the specific value of the request, and build a variable storage of the requests.
@startuml
User -> Server
Server -> LLM
LLM -> Server: DocumentDB Query String
Server -> DB: Executes
Server -> Cache: Stores the request and query
DB -> Server
Server -> User
== NEXT TIME ==
User -> Server
Server -> Cache: Redirects to the cache, rather than re-generate the query
Cache -> DB
DB -> Server
Server -> User
@endumlReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels
