this post was submitted on 05 Jul 2024
165 points (98.2% liked)

PC Gaming

8044 readers
477 users here now

For PC gaming news and discussion. PCGamingWiki

Rules:

  1. Be Respectful.
  2. No Spam or Porn.
  3. No Advertising.
  4. No Memes.
  5. No Tech Support.
  6. No questions about buying/building computers.
  7. No game suggestions, friend requests, surveys, or begging.
  8. No Let's Plays, streams, highlight reels/montages, random videos or shorts.
  9. No off-topic posts/comments.
  10. Use the original source, no clickbait titles, no duplicates. (Submissions should be from the original source if possible, unless from paywalled or non-english sources. If the title is clickbait or lacks context you may lightly edit the title.)

founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] pantyhosewimp@lemmynsfw.com 1 points 1 month ago (1 children)

So you’re a developer. Beautiful. That makes it easy then.

Look, you mentioned Postgres. But why use it at all for anything? Because redoing all the features that separate product provides is a giant pain in the ass. Now, what if your needs didn’t quite work with trad-relational DBs? Too much data, reads a million times higher than writes, no need for real-time accuracy. Then you use a specialized db like BigTable.

There are other services you plug into instead of reinvent. You stand up web servers with special features like redirect rules as configuration. You could write your own web service every time you start a new app, but that’s crazy. The need Apache or whatever is filling is a communications management piece.

Ok. Now. You are building a service and you need to build a transaction system for trading of digital assets with fiat currency. You could write your own or you could use a specialized service. NFTs on crypto currency are that prebuilt service. I’m switching metaphors now, but it’s just like picking a Docker provider.

[–] jjjalljs@ttrpg.network 1 points 1 month ago

Look, you mentioned Postgres. But why use it at all for anything?

It's a good tool for the job. It's well tested, supported, documented, etc

I really don't see the value that NFTs and block chain offer for games (or much else). I don't want to store my game data on some block chain. That's going to be slow and awkward. A quick Google says etherium can handle like 10 transactions a second. Bitcoin takes like 10 minutes. That's unacceptably slow.

So it's more like switching from postgres to an Excel sheet.