1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Hashing unvariant tables to ease caching on client side

Discussion in 'Databases' started by Coyoteazul, Apr 4, 2021.

  1. #1
    Hi, I'm working on my first project that requires a database and I was hoping to get an opinion on an idea I just had. Sorry if it's too basic or already implemented in a framework. I couldn't find anything like this on google.

    I was thinking on caching some of the tables that have lots of reads and few writes in the client application. To make sure the cached table is the same as the one in the database I wanted the client application to send a precalculated hash of the cached table when making a request. The server application would compare it against its own precalculated hash stored in the DB (which I'd keep updated through triggers) and if it's the same it'd send a confirmation instead of the whole table.

    Am I over engineering this? My main reason to do it this way is to give the user a more fluent experience. I used a dozen applications similar to the one I want to make and there's always a second or 2 of delay for the ones where the client app is browser based.
    The other ones I used had on site server or even managed the data on the same computer, so it's not really comparable.

    I'm using postgres and the client application will be a PWA. I expect the tables to have peaks of a thousand reads per hour and the tables shouldn't have over 200 rows and 10 columns.
     
    Coyoteazul, Apr 4, 2021 IP
  2. mmerlinn

    mmerlinn Prominent Member

    Messages:
    3,197
    Likes Received:
    818
    Best Answers:
    7
    Trophy Points:
    320
    #2
    Is there a reason why you can't use a simple time stamp on the tables instead of a hash? Though highly unlikely, a hash on both tables could be the same even though the tables have different content. A properly implemented time stamp will never have collisions like that.
     
    mmerlinn, Apr 4, 2021 IP
  3. Coyoteazul

    Coyoteazul Greenhorn

    Messages:
    2
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    11
    #3
    That completely skipped my mind for some reason. So I WAS over engineering after all, though not where I was worried about. Thank you!
     
    Coyoteazul, Apr 4, 2021 IP