performance - How to fill redis with redis-cli with dummy data of size weigh hundreds of MB? -
i getting hand dirty redis monitoring. far came metrics useful monitor redis:
- memory_used
- through put
- latency
- connections
- replication
i newbie on this. trying fill redis redis-cli dummy data as: in `seq 10000000`; redis-cli set users:app "{id: '$i', name: 'name$i', address: 'address$i' }" ; done
doesn't scale need fillup redis-db fast enough...
also need regarding latency , throught put monitoring. know mean, don't know how measure them... eyes don't see rellated on output redis-cli info
thanks, support/guidence :d
to "fill fast", follow instructions in documentation mass insert - gist using --pipe
directive on pre-prepared data file.
Comments
Post a Comment