Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
ea38cfb
add CVE link for 7.4
kaitlynmichael Oct 10, 2024
9768f57
link to RS CVE list for 7.2.4 and 6.2.18
kaitlynmichael Oct 10, 2024
884e476
fix relrefs
kaitlynmichael Oct 10, 2024
af44083
Fix redis service name on installation page (#756)
andreww2012 Oct 10, 2024
01a1cf9
Update _index.md
ViktarStarastsenka Oct 11, 2024
f507b96
Update content/develop/connect/insight/_index.md
ViktarStarastsenka Oct 11, 2024
aa1d3c5
Add support for versioned products
paoloredis Sep 12, 2024
8311bdd
Fix href links
paoloredis Sep 23, 2024
7696098
Revert "Merge pull request #701 from redis/7.6_revert"
cmilesb Sep 26, 2024
52e47ac
Move Pro Preview to October
cmilesb Oct 15, 2024
7854811
DOC: typo for __vec_score sortby field (#760)
nekomeowww Oct 15, 2024
5567342
FLUSH commands and functions (#762)
LiorKogan Oct 15, 2024
cf3831b
OP: update RedisGears release notes for 1.2.10 (#766)
dwdougherty Oct 15, 2024
9e2213c
DOC-4374 RS 7.4.6-102 release notes (#767)
rrelledge Oct 15, 2024
45b90a1
RS 6.4.2-115 release notes (#765)
rrelledge Oct 15, 2024
e9007db
fix typo in bitfields page (#769)
Oct 15, 2024
62371fd
RS: Add alias to docker-quickstart.md (#770)
rrelledge Oct 15, 2024
5c05ded
RS: Add CVEs to release notes (#754)
rrelledge Oct 15, 2024
4c03c95
K8s: 6.4.2-8 maint 3 (#764)
kaitlynmichael Oct 15, 2024
9273343
Fix minor typos in vector-database.md (#772)
asciimo Oct 16, 2024
7172921
DEV: add TCEs to query > combined page (#686)
dwdougherty Oct 16, 2024
c33da86
fix typo
mich-elle-luna Oct 16, 2024
18ce3fb
DOC-4303 updated Go landing page
andy-stark-redis Sep 27, 2024
3c9c7ce
Apply suggestions from code review
andy-stark-redis Sep 27, 2024
aaf2aea
remove redundant line causing issues (#781)
kaitlynmichael Oct 18, 2024
3493573
Fix broken links (#779)
kaitlynmichael Oct 18, 2024
1ea2edc
K8s: 7.4.6-2 unicorn maint release notes (#771)
kaitlynmichael Oct 18, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
99 changes: 99 additions & 0 deletions assets/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -969,4 +969,103 @@ code {
/* no-click turns off border and click event on small icons */
a[href*="#no-click"], img[src*="#no-click"] {
@apply border-none cursor-default pointer-events-none no-underline;
}

/* Version selector in side menu */
.menu__version-selector {
float: right;
left: 18px;
padding: 0 22px 0;
position: relative;
top: -28px;
z-index: 1;
border: 1px solid #dfdfdf;
}

.menu__version-selector button {
background: transparent;
border: none;
font-size: 13px;
outline: none;
}

.menu__version-selector button span.menu__version-selector__toggler {
display: none;
font-size: 8px;
transform: translateY(-1px) translateX(2px);
}

.menu__version-selector span.menu__version-selector__toggler.opener {
display: inline-block;
}

.menu__version-selector span.menu__version-selector__toggler.closer {
display: none;
}

.menu__version-selector .menu__version-selector__list {
background: #f7f7f7;
border: 1px solid #dfdfdf;
border-top: none;
display: none;
font-size: 13px;
left: -1px;
position: absolute;
width: calc(100% + 2px);
z-index: 1;
}

.menu__version-selector .menu__version-selector__list a {
color: #868484;
display: block;
padding-left: 10px;
width: 100%;
}

.menu__version-selector .menu__version-selector__list a:hover {
color: #000;
}

.menu__version-selector .menu__version-selector__list a.selected-version {
display: none;
}

.menu__version-selector.open {
border: 1px solid #dfdfdf;
}

.menu__version-selector.open .menu__version-selector__toggler.opener {
display: none;
}

.menu__version-selector.open .menu__version-selector__toggler.closer {
display: inline-block;
}

.menu__version-selector.open .menu__version-selector__list {
display: block;
}

.menu__version-selector > li .menu-divider {
border-top: 1px solid #5d6876;
height: 1px;
left: 20px;
margin-left: 0 !important;
position: absolute;
top: 10px;
width: calc(100% - 20px);
}

.menu__version-selector > li > .children {
display: none;
}

.menu__version-selector > li.parent > .children {
display: flex;
position: relative;
padding-top: 60px;
}

.dd-item .highlight:hover {
color: #5961ff;
}
7 changes: 5 additions & 2 deletions content/commands/flushall/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,11 @@ It is possible to use one of the following modifiers to dictate the flushing mod
* `ASYNC`: flushes the databases asynchronously
* `SYNC`: flushes the databases synchronously

Note: an asynchronous `FLUSHALL` command only deletes keys that were present at the time the command was invoked. Keys created during an asynchronous flush will be unaffected.
## Notes

* An asynchronous `FLUSHALL` command only deletes keys that were present at the time the command was invoked. Keys created during an asynchronous flush will be unaffected.
* This command does not delete functions.

## Behavior change history

* `>= 6.2.0`: Default flush behavior now configurable by the **lazyfree-lazy-user-flush** configuration directive.
* `>= 6.2.0`: Default flush behavior now configurable by the **lazyfree-lazy-user-flush** configuration directive.
7 changes: 5 additions & 2 deletions content/commands/flushdb/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,11 @@ It is possible to use one of the following modifiers to dictate the flushing mod
* `ASYNC`: flushes the database asynchronously
* `SYNC`: flushes the database synchronously

Note: an asynchronous `FLUSHDB` command only deletes keys that were present at the time the command was invoked. Keys created during an asynchronous flush will be unaffected.
## Notes

* An asynchronous `FLUSHDB` command only deletes keys that were present at the time the command was invoked. Keys created during an asynchronous flush will be unaffected.
* This command does not delete functions.

## Behavior change history

* `>= 6.2.0`: Default flush behavior now configurable by the **lazyfree-lazy-user-flush** configuration directive.
* `>= 6.2.0`: Default flush behavior now configurable by the **lazyfree-lazy-user-flush** configuration directive.
Loading
Loading