deez
deez

Reputation: 1704

Can redis be configured to save only to disk and not in memory?

I am facing some scaling issues with my redis instances and was wondering if there's a way to configure redis to save data only to disk (and not hold it in memory). That way I could just increase disk space and not RAM.

Right now my instances are getting stuck and just hang when they reach the memory limit.

Thanks!

Upvotes: 0

Views: 336

Answers (1)

Itamar Haber
Itamar Haber

Reputation: 49932

No - Redis, atm, is an in-memory database. That means that all data that it manages resides first and foremost in RAM.

Upvotes: 1

Related Questions