1

Is there an equivalent command for BGSAVE in the Stackexchange client ? If there is not then how do i go about to achieve the same thing ?

himekami
  • 1,419
  • 3
  • 13
  • 21
  • i'll use snapshotting instead. – himekami Aug 19 '15 at 03:28
  • It appears that the author "never got around" to adding it in the previous incarnation of the StackExchange.Redis client - perhaps the same applies today: http://stackoverflow.com/questions/19804356/how-to-call-bgsave-from-booksleeve – Itamar Haber Aug 19 '15 at 09:26

1 Answers1

2

AFAIK you can do it with:

ConnectionMultiplexer.Connect("host").GetServer("host").Save(SaveType.BackgroundSave);
thepirat000
  • 12,362
  • 4
  • 46
  • 72