Skip to content

Instantly share code, notes, and snippets.

@ufo22940268
Created June 6, 2022 01:29
Show Gist options
  • Save ufo22940268/db8a3f7043750417ce0dbc6706188eac to your computer and use it in GitHub Desktop.
Save ufo22940268/db8a3f7043750417ce0dbc6706188eac to your computer and use it in GitHub Desktop.
graph TD;
    A[GetActiveAutoSplitProcessStatusesByDmsFolderId1] --> B{cache exists ?}
    B --> |Yes| F{cache expired ?}
    F --> |No| D[return]
    B --> |No| C[request dms service]
    F --> |Yes| C
    C --> E[store result into cache]
    E --> D
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment