Skip to content

add redis to hypernode platform menu#466

Open
TimVNL wants to merge 2 commits intomasterfrom
add-redis-menu
Open

add redis to hypernode platform menu#466
TimVNL wants to merge 2 commits intomasterfrom
add-redis-menu

Conversation

@TimVNL
Copy link
Contributor

@TimVNL TimVNL commented Mar 23, 2026

No description provided.

@@ -52,41 +52,33 @@ hypernode-systemctl settings redis_eviction_policy allkeys-lru
## Policy explanation

### `noeviction`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
### `noeviction`
### `noeviction`

Redis will not evict any keys when memory is full. New write operations
that require memory will fail.

### `allkeys-lru`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
### `allkeys-lru`
### `allkeys-lru`


Redis can evict any key and removes the least recently used keys first.

### `allkeys-lfu`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
### `allkeys-lfu`
### `allkeys-lfu`


Redis can evict any key and removes the least frequently used keys first.

### `allkeys-random`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
### `allkeys-random`
### `allkeys-random`


Redis can evict any key and removes keys at random.

### `volatile-lru`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
### `volatile-lru`
### `volatile-lru`


This is the default policy on Hypernode.

### `volatile-lfu`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
### `volatile-lfu`
### `volatile-lfu`

Redis only evicts keys with an expiration time and removes the least
frequently used keys first.

### `volatile-ttl`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
### `volatile-ttl`
### `volatile-ttl`

Redis only evicts keys with an expiration time and prefers keys that will
expire soonest.

### `volatile-random`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
### `volatile-random`
### `volatile-random`

@github-actions
Copy link
Contributor

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Development

Successfully merging this pull request may close these issues.

1 participant