Redis
 sql >> Teknologi Basis Data >  >> NoSQL >> Redis

redis dump.rdb / menyimpan file kecil

Agar sedikit lebih membantu... Cara menemukan atau menyetel tempat redis menyimpan file dump.rdb (server ubuntu):Pertama, temukan file redis.conf Anda:Di terminal, jalankan:

ps -e aux | grep redis

Saya menemukan file redis.conf saya di:

var/etc/redis/

Jika milik Anda adalah tempat yang sama maka buka file dengan:

pico var/etc/redis/redis.conf

Cari:

# The filename where to dump the DB
dbfilename dump.rdb

# The working directory.
#
# The DB will be written inside this directory, with the filename specified
# above using the 'dbfilename' configuration directive.
#
# Also the Append Only File will be created inside this directory.
#
# Note that you must specify a directory here, not a file name.
dir /var/lib/redis

Tergantung pada pengaturan Anda untuk "dbfilename" dan "dir" maka di situlah Anda menemukan file redis dump.rdb Anda.

Perbarui :Untuk melihat konfigurasi redis Anda, jalankan saja:

redis-cli CONFIG GET *


  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Bagaimana cara meningkatkan penggunaan CPU server Redis?

  2. menangani situasi redis maxmemory dengan Rails saat menggunakan Rails caching

  3. Persyaratan Ruang Struktur Data Redis

  4. Redis tidak update saat banyak request sekaligus

  5. Bagaimana cara menggunakan sadd dengan banyak elemen di Redis menggunakan Python API?