public class SetCommandProcessor extends MemcacheCommandProcessor<SetCommand>
DEFAULT_MAP_NAME, MAP_NAME_PRECEDER
textCommandService
Constructor and Description |
---|
SetCommandProcessor(TextCommandService textCommandService) |
Modifier and Type | Method and Description |
---|---|
void |
handle(SetCommand setCommand)
"set" means "store this data".
|
void |
handleRejection(SetCommand request) |
byteArrayToLong, concatenate, longToByteArray
public SetCommandProcessor(TextCommandService textCommandService)
public void handle(SetCommand setCommand)
"add" means "store this data, but only if the server *doesn't* already hold data for this key".
"replace" means "store this data, but only if the server *does* already hold data for this key".
After sending the command line and the data block the client awaits the reply, which may be:
- "STORED\r\n", to indicate success.
- "NOT_STORED\r\n" to indicate the data was not stored, but not because of an error. This normally means that either that the condition for an "add" or a "replace" command wasn't met, or that the item is in a delete queue (see the "delete" command below).
public void handleRejection(SetCommand request)
Copyright © 2018 Hazelcast, Inc.. All Rights Reserved.