You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@geode.apache.org by "ASF subversion and git services (Jira)" <ji...@apache.org> on 2022/03/19 04:26:00 UTC

[jira] [Commented] (GEODE-9948) Implement LINSERT

    [ https://issues.apache.org/jira/browse/GEODE-9948?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17509163#comment-17509163 ] 

ASF subversion and git services commented on GEODE-9948:
--------------------------------------------------------

Commit c77f262c4f80958b67961bb128476fdf0865ba88 in geode's branch refs/heads/develop from Hale Bales
[ https://gitbox.apache.org/repos/asf?p=geode.git;h=c77f262 ]

GEODE-9948: Implement LINSERT Command (#7392)

Implements the LINSERT command as described by the Redis documentation.

LINSERT key BEFORE|AFTER pivot element

The command inserts an element into a list either BEFORE or AFTER the
reference element, which is called the 'pivot'.
It returns the new length of the list if the element is inserted, and -1
if the pivot is not an element of the list.
If the key does not exist, it will not be created, and the command will
return -1.

> Implement LINSERT
> -----------------
>
>                 Key: GEODE-9948
>                 URL: https://issues.apache.org/jira/browse/GEODE-9948
>             Project: Geode
>          Issue Type: New Feature
>          Components: redis
>            Reporter: Wayne
>            Assignee: Hale Bales
>            Priority: Major
>              Labels: pull-request-available
>             Fix For: 1.15.0
>
>
> Implement the [LINSERT|http://https//redis.io/commands/linsert] command.
>  
> +Acceptance Criteria+
> The command has been implemented along with appropriate unit and system tests.
>  
> The command has been tested using the redis-cli tool and verified against native redis.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)