sabbey37 commented on pull request #6605: URL: https://github.com/apache/geode/pull/6605#issuecomment-863585311
Already discussed this with you via Zoom, but putting it here for visibility/posterity. We are able to dump the contents of a key into a file with Redis (via redis-cli), remove the line feed at the end of that file, then restore the key from the file. We currently cannot do this with Radish. Do we expect to? Is this something we should look into further? ``` redis-cli sadd a 1 2 3 4 redis-cli --raw dump a > keyDump (delete line feed) cat keyDump | redis-cli -x restore mynewkey 0 redis-cli smembers mynewkey 1) "1" 2) "2" 3) "3" 4) "4" ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
