You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
Required fields*
- 12Scroll down a bit on that page: "Instead of typical HTTP requests, the Firebase Realtime Database uses data synchronization—every time data changes, any connected device receives that update within milliseconds. Provide collaborative and immersive experiences without thinking about networking code". Clients don't have to poll, they get notified of data changes.CodeCaster– CodeCaster2017-04-15 09:26:26 +00:00Commented Apr 15, 2017 at 9:26
- 3Ah okay, so the difference is not really about how quickly the data is stored, it's more about the fact that the database can send push notifications about changes to clients in real time? And with for example Backendless the clients would have to manually poll the database to see the changes? That makes sense, but it's a bit confusing name for it... I guess "Notificating database" or "Observable database" doesn't sound as catchy though...Magnus– Magnus2017-04-15 09:36:43 +00:00Commented Apr 15, 2017 at 9:36
- 1A further source of confusion was that Wikipedia says that a realtime database uses "[...] timing constraints that represent a certain range of values for which the data are valid. That makes it sound like a realtime database is more like a non-persistent temporary cache than a permanent storage solution? I guess that's not at all what Firebase mean with their terminology?Magnus– Magnus2017-04-15 10:05:19 +00:00Commented Apr 15, 2017 at 10:05
- 1Also, if the server supports HTTP long polling, isn't that effectively the same thing?Magnus– Magnus2017-04-15 10:39:07 +00:00Commented Apr 15, 2017 at 10:39
- 3It's not "a realtime database". It is the "Firebase Realtime Database". It's just a product name. You might just as easily wonder what "a Firebase" is.Frank van Puffelen– Frank van Puffelen2017-04-15 15:39:46 +00:00Commented Apr 15, 2017 at 15:39
| Show 4 more comments
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
- create code fences with backticks ` or tildes ~ ```
like so
``` - add language identifier to highlight code ```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible) <https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. python-3.x), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you