1

我最近用 Heroku 建立了一个 Obtvse 博客,今天我收到一封电子邮件,说它接近了 7749 行的行数限制。我只有两篇博文!这怎么可能?我应该担心吗?

4

1 回答 1

1

它可能是会话数据或垃圾评论。在某些时候 Heroku 会撤销你的写权限,但除非一个人是彻底的滥用,否则就目前的执法而言。也许您应该考虑分析您对表中行的使用:

$ heroku pg:psql -a my-app
=> \dt

             List of relations
 Schema |       Name        | Type  | Owner 
--------+-------------------+-------+-------
 public | foo               | table | fdr
 public | schema_migrations | table | fdr
(2 rows)

=> SELECT count(*) FROM foo;
 count 
-------
     1
(1 row)
于 2013-04-12T07:20:32.453 回答