溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

mongodb中有沒有主鍵索引

發(fā)布時(shí)間:2020-06-29 11:22:47 來源:億速云 閱讀:264 作者:清晨 欄目:編程語言

這篇文章將為大家詳細(xì)講解有關(guān)mongodb中有沒有主鍵索引,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。

mongodb中有主鍵,但是如果不對主鍵進(jìn)行設(shè)置的話是默認(rèn)主鍵。

1、默認(rèn)主鍵

ObjectId 類似唯一主鍵,可以很快的去生成和排序,包含 12 bytes,含義是:

前 4 個(gè)字節(jié)表示創(chuàng)建 unix 時(shí)間戳,格林尼治時(shí)間 UTC 時(shí)間,比北京時(shí)間晚了 8 個(gè)小時(shí)

接下來的 3 個(gè)字節(jié)是機(jī)器標(biāo)識碼

緊接的兩個(gè)字節(jié)由進(jìn)程 id 組成 PID

最后三個(gè)字節(jié)是隨機(jī)數(shù)

mongodb中有沒有主鍵索引

MongoDB 中存儲的文檔必須有一個(gè) _id 鍵。這個(gè)鍵的值可以是任何類型的,默認(rèn)是個(gè) ObjectId 對象

由于 ObjectId 中保存了創(chuàng)建的時(shí)間戳,所以你不需要為你的文檔保存時(shí)間戳字段,你可以通過 getTimestamp 函數(shù)來獲取文檔的創(chuàng)建時(shí)間:

通過注釋【@Id】設(shè)置主鍵,如果不設(shè)置主鍵,mongoDB會自動生成主鍵。

@Document
@Data
public class InvoicesMsg {
    private String customerId;
    private String orderId;
    private String money;
    private String time;
    private String qmz;
    public InvoicesMsg(String customerId, String orderId, String money, String time, String qmz) {
        this.customerId = customerId;
        this.orderId = orderId;
        this.money = money;
        this.time = time;
        this.qmz = qmz;
    }
}

默認(rèn)生成的數(shù)據(jù)

{
    "_id": ObjectId("5cb7d0b95de26915c1433160"),
    "customerId": "5c73830e54bbb01d1051ef7d",
    "orderId": "0000000120190418090814000001",
    "money": "550",
    "time": "1555549694",
    "qmz": "a1fbbb8fc0d0f2d93c218efc2cd2de517156e30f",
    "date": "2019-04-18 09:19:53.396",
    "_class": "com.example.btest.demo.bean.InvoicesMsg"
}

2、自定義主鍵

    @Document
@Data
public class InvoicesMsg {
    public String id; //主鍵
    private String customerId;
    private String orderId;
    private String money;
    private String time;
    private String qmz;
    public InvoicesMsg(String customerId, String orderId, String money, String time, String qmz) {
        this.customerId = customerId;
        this.orderId = orderId;
        this.money = money;
        this.time = time;
        this.qmz = qmz;
    }
}

新增一條數(shù)據(jù),給id設(shè)置值 "1122357" 作為主鍵

{
    "_id": "1122357",
    "customerId": "00",
    "orderId": "1122357",
    "money": "10",
    "time": "1878678818",
    "qmz": "67d53fdccdf29a0686f3e351fe09d61340ea2c85",
    "date": "2019-04-19 11:25:29.253",
    "_class": "com.example.btest.demo.pojo.InvoicesMsg"
}

可以看到,主鍵值設(shè)為了 1122357 ,但是字段仍然是_id 。

關(guān)于mongodb中有沒有主鍵索引就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI