Skip to content

Instantly share code, notes, and snippets.

@vlio20
Created September 9, 2019 18:30
Show Gist options
  • Save vlio20/a18823a1fc9a8d071600e41c36b2f74e to your computer and use it in GitHub Desktop.
Save vlio20/a18823a1fc9a8d071600e41c36b2f74e to your computer and use it in GitHub Desktop.
memoizeAsync
class DataProvider {
@memoizeAsync(1000 * 60 * 60)
getData(params: QueryParams): Promise<Data> {
// some code
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment