• Dave@lemmy.nz
    link
    fedilink
    English
    arrow-up
    4
    ·
    23 hours ago

    Instances only send you content for communities you (or someone on your instance) are subscribed to. If you don’t care about politics you could probably subscribe to a bunch of smaller communities and not have an issue.

    In general though Lemmy needs a lot of disk space, best to configure pictrs not to store images which helps a lot, but the database can still be huge.

    • nutomic@lemmy.ml
      link
      fedilink
      English
      arrow-up
      5
      ·
      21 hours ago

      By far the most space is taken up by votes. You can disable votes (1.0 will have more options), or delete them directly from the database.

      • Dave@lemmy.nz
        link
        fedilink
        English
        arrow-up
        2
        ·
        21 hours ago

        Yeah I guess the issue is that votes are the thing that makes Lemmy what it is. Without them it’s just a stream of posts with no ranking. Hard to avoid needing that space.

        It’s not a huge amount of space, but if you’re on a cheap VPS then they don’t come with much space.

        • nutomic@lemmy.ml
          link
          fedilink
          English
          arrow-up
          4
          ·
          21 hours ago

          You could write a query to votes for remote posts older than 6 months, or something similar.

          • mesamunefire@piefed.social
            link
            fedilink
            English
            arrow-up
            1
            ·
            19 hours ago

            Or instead of individual votes do a dump like an rss. Like only update when I ask every 10 minutes or so. Get everything from x - y time and just give me the totals. Probably only good for smaller instances though.

            • nutomic@lemmy.ml
              link
              fedilink
              English
              arrow-up
              1
              ·
              11 hours ago

              Its not that easy because users can undo their votes, or change an upvote to downvote. Thats why we store every individual vote in the database. Also votes from defederated instances are discarded, which wouldnt work if there is only a total vote count from the community. And in general Activitypub is push-based, not pull-based.