---
title: Reduced minimum cache TTL for Workers KV to 30 seconds
description: The minimum cacheTtl parameter has been reduced from 60 seconds to 30 seconds, enabling faster cache refreshes and more granular cache control.
image: https://developers.cloudflare.com/changelog-preview.png
---

> Documentation Index  
> Fetch the complete documentation index at: https://developers.cloudflare.com/changelog/llms.txt  
> Use this file to discover all available pages before exploring further. 

[Skip to content](#%5Ftop) 

# Changelog

New updates and improvements at Cloudflare.

[ Subscribe to RSS ](https://developers.cloudflare.com/changelog/rss/index.xml) [ View RSS feeds ](https://developers.cloudflare.com/fundamentals/new-features/available-rss-feeds/) 

![hero image](https://developers.cloudflare.com/_astro/hero.CVYJHPAd_26AMqX.svg) 

[ ← Back to all posts ](https://developers.cloudflare.com/changelog/) 

## Reduced minimum cache TTL for Workers KV to 30 seconds

Jan 30, 2026 

[ KV ](https://developers.cloudflare.com/kv/) 

The minimum `cacheTtl` parameter for Workers KV has been reduced from 60 seconds to 30 seconds. This change applies to both `get()` and `getWithMetadata()` methods.

This reduction allows you to maintain more up-to-date cached data and have finer-grained control over cache behavior. Applications requiring faster data refresh rates can now configure cache durations as low as 30 seconds instead of the previous 60-second minimum.

The `cacheTtl` parameter defines how long a KV result is cached at the global network location it is accessed from:

**JavaScript**

```js
// Read with custom cache TTL
const value = await env.NAMESPACE.get("my-key", {
  cacheTtl: 30, // Cache for minimum 30 seconds (previously 60)
});


// getWithMetadata also supports the reduced cache TTL
const valueWithMetadata = await env.NAMESPACE.getWithMetadata("my-key", {
  cacheTtl: 30, // Cache for minimum 30 seconds
});
```

The default cache TTL remains unchanged at 60 seconds. Upgrade to the latest version of Wrangler to be able to use 30 seconds `cacheTtl`.

This change affects all KV read operations using the binding API. For more information, consult the [Workers KV cache TTL documentation](https://developers.cloudflare.com/kv/api/read-key-value-pairs/#cachettl-parameter).

```json
{"@context":"https://schema.org","@type":"BlogPosting","@id":"https://developers.cloudflare.com/changelog/post/2026-01-30-kv-reduced-minimum-cachettl/#page","headline":"Reduced minimum cache TTL for Workers KV to 30 seconds · Changelog","description":"The minimum cacheTtl parameter has been reduced from 60 seconds to 30 seconds, enabling faster cache refreshes and more granular cache control.","url":"https://developers.cloudflare.com/changelog/post/2026-01-30-kv-reduced-minimum-cachettl/","inLanguage":"en","image":"https://developers.cloudflare.com/changelog-preview.png","dateModified":"2026-01-30","datePublished":"2026-01-30","publisher":{"@type":"Organization","name":"Cloudflare","url":"https://www.cloudflare.com/"},"isPartOf":{"@type":"WebSite","@id":"https://developers.cloudflare.com/#website","name":"Cloudflare Docs","url":"https://developers.cloudflare.com/"}}
```
