How do you feel about the massive influx of users?

  • AbominableSlinky@lemmy.world
    link
    fedilink
    arrow-up
    2
    ·
    1 year ago

    Not necessarily a pain, you just have to model the data very differently in something like DynamoDB. Those views are secondary indexes.

    Search, though, you’re right. You’d be running ElasticSearch along side it and the cost and complexity starts to go up. Or just abandon having a functional search entirely, like Reddit did…

    • bobaduk@lemmy.world
      link
      fedilink
      arrow-up
      1
      ·
      1 year ago

      Ja, but you need an index for each thread, some kind of time partitioned thread index for each community, same for all.

      Then you need to query all comments or posts by user, so that’s another index, then you need some way of querying for hot, or controversial or what have you.

      It’s doable, but fiddly. Tempted to have a go though!