Can i delete a key(memoryStore hash map) while in an UpdateAsync Operation?

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear!

I want to delete a key after doing some stuff with the data in it(checking, mutating the data, locally copying to use on another key etc.)

  1. What is the issue? Include screenshots / videos if possible!

returning nil wouldn’t work(haven’t tested anything yet, most of the sytem has yet to be written) as returning nil in an updateAsync makes it so the operation is cancelled by the server and the data of the key is reverted to the version before the operation had started.

I was wondering if anyone knows if there is any way to deal with this other than having to do RemoveAsync on the key, having to expand another request. The system Literally works on these requests and i wish to not expend a request for no reason.