Firebase : Read-only & non-realtime mode activated to improve browser performance

后端 未结 7 1772
终归单人心
终归单人心 2020-11-29 08:52

Read-only & non-realtime mode activated to improve browser performance

Message pops up in my project and I\'m unable to delete the n

7条回答
  •  情歌与酒
    2020-11-29 09:46

    When it detects that it's downloading too many nodes from your database, the Firebase Console stops using real-time mode and switches to read-only mode. In this mode it requires less work from the browser, so it is more likely that the browser will stay performant.

    To get back to realtime mode, you have to go to a location that has fewer nodes. So say that you start loading the database at the root, that means that "pseudo address bar" at the top of the data tree will say:

    https://.firebaseio.com/
    

    And then will show the list of items. Now click on the URL in that pseudo address bar and change it to:

    https://.firebaseio.com/
    

    And hit enter. The data tree will reload with just the node from one-of-your-keys and down and will likely switch to realtime mode again.

提交回复
热议问题