4

I am scraping (legally) .csv files every night. ~20% grow by one line on any given night.

I'd like to store the whole csv as a "blob" in redis, rather than deal with FS. Is that possible, even with new lines within and such? How?

Ajean
  • 5,528
  • 14
  • 46
  • 69
Todd Curry
  • 1,045
  • 1
  • 10
  • 23

1 Answers1

0

This tutorial is a good start. However, I recommend taking a look at Should I use redis to store large number of binary files in redis?

Community
  • 1
  • 1
Moayad Mardini
  • 7,271
  • 5
  • 41
  • 58
  • Thanks, Moayad, familiar with both links. This is 6000 files, each in the 1.0K to 3.0K range. Way, way smaller footprint. – Todd Curry Dec 31 '13 at 21:38