You may load the points via ajax.
Observe the bounds_changed-event of the map, send the bounds to the server and let the server respond with the points(filtered by the given bounds). How exactly the filtering works I can't tell you exactly, because I'm not familiar with PostGIS, but ST_CONTAINS appears to be the method you need.
However, a user may zoom to a very low level, in this case you will still get a large amount of points, but you may additionally restrict the loading of the points to a higher zoom-level.
Another option(I would prefer it): Import the data into a FusionTable and use a FusionTableLayer, this would give a much better performance.