fix(docs): close code-placeholders shortcode in LVC delete guide

pull/6277/head
meelahme 2025-07-31 12:47:15 -07:00
parent faa973a86c
commit 5419f10fa5
2 changed files with 3 additions and 2 deletions

View File

@ -169,4 +169,4 @@ The cache imports the distinct values from the table and starts caching them.
>
> The LVC is stored in memory, so it's important to consider the size and persistence
> of the cache. For more information, see
> [Important things to know about the Last Value Cache](/influxdb3/version/admin/last-value-cache/#important-things-to-know-about-the-last-value-cache)
> [Important things to know about the Last Value Cache.](/influxdb3/version/admin/last-value-cache/#important-things-to-know-about-the-last-value-cache)

View File

@ -28,10 +28,11 @@ influxdb3 delete last_cache \
You can also delete a Last Value Cache using the [InfluxDB v3 HTTP API](/influxdb3/version/api/v3/). Send a `DELETE` request to the `/api/v3/configure/last_cache` endpoint with query parameters.
{{% code-placeholders "(DATABASE|TABLE|LVC)_NAME|AUTH_TOKEN" %}}
```bash
curl -X DELETE "https://localhost:8181/api/v3/configure/last_cache?db=DATABASE_NAME&table=TABLE_NAME&name=LVC_NAME" \
-H "Authorization: Bearer AUTH_TOKEN"
```
{{% /code-placeholders %}}
## Example