In this post, I go into hopefully better output parsing.

  • chonkyninja@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    arrow-down
    1
    ·
    2 days ago

    Maybe you should just learn the toolsets better. Structured looks great until you’re tasked either with parsing a 20GB structured file. Each line of text representing a single item in a collection makes total sense, then when you get into things like a list subtype there’s nothing stopping you from using a char sequence to indicate a child item.

    • Laser@feddit.orgOP
      link
      fedilink
      English
      arrow-up
      4
      ·
      2 days ago

      One might wonder if at those file sizes, working with text still makes sense. I think there’s a good reason journald uses a binary format for storing all that data. And “real” databases tend to scale better than text files in a filesystem as well, even though a filesystem is a database.

      Most people won’t have to deal with that amount of text based data ever.