Php/docs/class.mongotimestamp

来自菜鸟教程
跳转至:导航、​搜索

(PECL mongo >=1.0.1)

简介

MongoTimestamp 用于分片(sharding)。 如果你不是想写分布式工具,你需要的也许是 MongoDate

MongoTimestamp 是 4 字节的时间戳(自新纪元以来的秒数),和 4 字节的自增长值。

这个类不用于测量时间、为文档创建时间戳或为一个文档自动增加、更新时间戳。 除非你写的是关于分片式内部的交互,否则请停下,直接前往 MongoDate, 不要再继续研究这个东西。这不是你要找的类。

如果你在写一个分片工具,继续阅读。


类摘要


MongoTimestamp {

/* 字段 */

public int $sec = 0

public int $inc = 0

/* 方法 */

public __construct ([ int $sec = time() [, int $inc ]] )

public __toString ( ) : string

}

Table of Contents