rpush abstract method
Appends value to the list stored at key.
Returns the length of the list after the push operation. Throws a ValkeyServerException if the key holds a non-list value.
Implementation
Future<int> rpush(String key, String value);
Appends value to the list stored at key.
Returns the length of the list after the push operation. Throws a ValkeyServerException if the key holds a non-list value.
Future<int> rpush(String key, String value);