Game Server Lags

From: Arvind Singh <arvindps(at)hotmail(dot)com>
To: "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Subject: Game Server Lags
Date: 2012-10-02 14:02:12
Message-ID: BLU164-W13377E8C9E5BF3912F721FCA860@phx.gbl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general


we are all aware of the popular trend of MMO games. where players face each other live.
My questions are focussed on reducing load on Game database or Sql queries

a) How to control the surge of records into the GameProgress table. so that players get response quicker. The Server starts to lag at peak hours or when 1000 players are online

There is a tremendous flow of sql queries, for ex. even in the current game version
There are average/minimum 100 tournaments online per 12 minutes or 500 players / hour
In Game Progress table, We are storing each player move
a 12 round tourament of 4 player there can be 48 records
plus around same number for spells or special items
> a total of 96 per tourament or 48000 record inserts per hour (500 players/hour)

I am also considering using a background process in Csharp, that keeps moving expired tournament records from GameProgresstable to another Database where we have a server free of gameplay load.

b) How often should we run vaccum full of postgres .

c) can we set a table to be present in some kind of cache or quick buffer for quicker access, for ex. we often have to authenticate user credentials or lookup tournament status in Table

thanks
arvind

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Craig Ringer 2012-10-02 14:16:22 Re: Game Server Lags
Previous Message Tom Lane 2012-10-02 14:01:47 Re: strange permission error