Josh Crowther
Josh Crowther
I have some ideas of what I think you mean by "offline first support," but the term itself is rather vague especially when viewed in the context of the entire...
@knpwrs I think this is something that we could totally accept as a PR! Love to have your contributions. The notion of different storage adapters is also an interesting idea...
+1 to what @mbleigh said. Lets try and keep this thread on topic though 😄 . Further questions on the Alpha program would be better directed to our support or...
@FluorescentHallucinogen, the Alpha Program is a great way to work with developers who are willing to donate their time to help make Firebase an awesome platform. There is really good...
AFAICT this discussion primarily emphasizes two things 1. Providing offline access to data 1. Leveraging offline data on boot to prevent unneeded network traffic The notion of pluggable storage adapters...
@knpwrs I looked at LevelUP and it seems like a really solid library, however I don't know that we need all that it provides. With the database already being quite...
@jsayol so we currently are using a hash function that can be found here: https://github.com/firebase/firebase-js-sdk/blob/master/src/database/js-client/core/Repo.js#L204-L236 This hash is a "simple" hash of the data in the node. We then send...
@knpwrs That is a great question! Paging @schmidt-sebastian since I don't know off the top of my head.
Scratched my own itch here seems I can solve the problem by overriding the `maxCapacity` on the throttler. ```python ... for name in EXCHANGES: # Turn on rate limiting exchange...
Yet another update, it seems that updating the `maxCapacity` like this fixes the max queue size but it does not seem that the rate limiting is preventing me from getting...