StarpTech / apollo-datasource-http

Optimized JSON HTTP Data Source for Apollo Server
MIT License
73 stars 32 forks source link

LRU max age #14

Closed canxuemianbao closed 2 years ago

canxuemianbao commented 3 years ago
export interface LRUOptions {
  readonly maxAge?: number
  readonly maxSize: number
}
this.memoizedResults = new QuickLRU({
      maxSize: this.options?.lru?.maxSize ? this.options.lru.maxSize : 100,
})

Thanks for you work, and I recently noticed that you provide LRUOptions with maxAge, but did not pass to QuickLRU.

StarpTech commented 3 years ago

Hi @canxuemianbao would you mind creating a PR?

canxuemianbao commented 3 years ago

Hi @canxuemianbao would you mind creating a PR?

sure, let me try, and this is the PR