Node and Redis project update
Moved away from storing individual string values to storing whole objects/documents in redis hashes. Hashes make more sense when you need to store a group of data values like a blog post.
But I’m not making a blog. My task it to create an updated version of my personal journal and information storage system. Daily I use it to log my thoughts, to stage blog posts (like this one), keep track of links to check later (which often doesn’t happen), keep todo lists for projects, and other things. But the old version relied too heavily on subfolder-type organization. The new version will be tag based, which will hopefully make it easier for me to keep things from getting buried in my hierarchy. Since the new design is tag-based, the data structures involved are simpler, opening the door for me to give redis a try.
Continue reading