Hi ,
Iam running redis on emulated pmem device using the below link.
I am using the default redis.conf available in the above git hub and just enabled the below options
appendonly =yes
and run my server using the below command
[root@pmem4]# ./redis-server redis.conf --nvm-maxcapacity 1 --nvm-dir /mnt/pmem4
and running the benchmark test to study the performance.
redis-benchmark -h 127.0.0.1 -p 6379 -t set,lpush -n 100000 -q -d 32 -r 100000
Query:
In the /mnt/pmem4 directory i observed two files.
redis-port-6379-1GB-AEP, and appendonly.aof files
And when i hexdump these two file both has some valid data
Can someone explain what are these two files.
When i looked into the code all the memory needed for setCommand is coming from
mmap memory of redis-port-6379-1GB-AEP file .IS my understanding correct?
Regards,
Muneendra.