Skip to content

Instantly share code, notes, and snippets.

@ufo22940268
Last active June 6, 2022 01:52
Show Gist options
  • Save ufo22940268/128e902e0abb58f6a8e6ff590ebe421b to your computer and use it in GitHub Desktop.
Save ufo22940268/128e902e0abb58f6a8e6ff590ebe421b to your computer and use it in GitHub Desktop.

Data flow

flowchart TD;
    A[GetActiveAutoSplitProcessStatusesByDmsFolderId] --> 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

Cache table design

key type
folder_id string
property_address string
created_at timestamp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment