hash
, list
, set
, zset
have member operations, string
does not have any member operation because it only has value.
Member operation will become visible when you select a corresponding key. Different key type have different member operations, let's illustrate them one by one.
Note: Member operations are used to manipulate members instead of their corresponding value (Value Operations).
You can add fields to hash, rename fields and remove fields from hash.
To add a new field to hash, you can click or use shortcut
⌘ + N
on Mac and Alt + Insert
on Windows to open add field dialog:
There are many ways to rename a field:
Shift + F6
All these three operations will make the field editable, then you can rename it and press ↩
when you're done:
Select the field that you want to remove and click or use shortcut
⌘ + Del
on Mac or Alt + Del
on Windows to remove a field.
You can add values to a list and remove values from a list.
To add a new value to list, you can click or use shortcut
⌘ + N
on Mac and Alt + Insert
on Windows to open add value dialog:
Select the value that you want to remove and click or use shortcut
⌘ + Del
on Mac or Alt + Del
on Windows to remove a value.
You can add members to a set and remove members from a set.
To add a new member to set, you can click or use shortcut
⌘ + N
on Mac and Alt + Insert
on Windows to open add member dialog:
Select the member that you want to remove and click or use shortcut
⌘ + Del
on Mac or Alt + Del
on Windows to remove a member.
You can add members to zset, change member scores and remove members from zset.
To add a new member to zset, you can click or use shortcut
⌘ + N
on Mac and Alt + Insert
on Windows to open add member dialog:
There are many ways to change the score of a member:
Shift + F6
All these three operations will make the score editable, then you can rename it and press ↩
when you're done:
Select the member that you want to remove and click or use shortcut
⌘ + Del
on Mac or Alt + Del
on Windows to remove a member.
Sometimes you need to copy the name of a member or the score value of zset member, you can use shortcut ⌘ + C
on Mac and Ctrl + C
on Windows to copy them.
You can also right-click on the member and select Copy
on the popup menu to copy the name of the member.
Codes Magic © 2013-2019 · Terms