Firestore and Auto Increment Ids

2019-08-17 07:16发布

I am currently using firestore for a small application. I am trying to see what I can use for auto increment ids. A simple use case which is common is order nos. A human consumable identifier I dont want to use the document id. This is not consumable for humans.

1条回答
2楼-- · 2019-08-17 07:54

There is no built-in auto-increment operator in Firestore. If you want something like that, you will have to build it yourself.

This typically involves keeping track of the latest ID you've used in a document in a well-known location, and then reading-and-updating that document from the client in a transaction.

But do seriously consider whether you can't use Firestore's built-in identifiers, as there are many reasons why Firestore comes with those built-in instead of having an auto-increment operator.

I highly recommend checking out some of these related questions:

And this page in the Firestore documentation in distributed counters.

查看更多
登录 后发表回答