Skip to content

Instantly share code, notes, and snippets.

@ufo22940268
Last active June 6, 2022 01:52

Data flow

Loading
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