AngularJS $http cache expiration time

后端 未结 4 941
你的背包
你的背包 2021-02-13 12:50

Can you set an expiration time for Angular\'s $http default caching system ? I would like that an URL stays in the cache for 1 minute, so that any requests made to it after 1 mi

4条回答
  •  猫巷女王i
    2021-02-13 13:16

    according to this site here are the $cacheFactory specs

    • Storage Javascript heap memory
    • Eviction algorithm Least recently used (LRU)
    • Time-to-live until page refresh
    • Support for revalidation No
    • Requires cooperation of remote server No

提交回复
热议问题