Data Modelling Advice for Blog Tagging system on Google App Engine

前端 未结 4 908
别跟我提以往
别跟我提以往 2020-12-24 00:01

Am wondering if anyone might provide some conceptual advice on an efficient way to build a data model to accomplish the simple system described below. Am somewhat new to th

4条回答
  •  遥遥无期
    2020-12-24 00:38

    counts being pre-computed is not only practical, but also necessary because the count() function returns a maximum of 1000. if write-contention might be an issue, make sure to check out the sharded counter example.

    http://code.google.com/appengine/articles/sharding_counters.html

提交回复
热议问题