600 results found
-
How to reduce reads for static data
I want to ask documentation on how to reduce the number of unnecessary reads. eg. my product data
let query = store.collection("products");
Assuming I have 500 products, one user click on get products = 500 reads ? If 100 users click that function, then all my quota is gone in 1 minute. Is that right?
How can I overcome this.
Please provide a full example. I have seen Mr Duckworth's presentation in a firebase event, but could not see a good example.
1 vote -
Make Unity SDK non-dependant of native APIs (a.k.a. "make it platform agnostic")
The current Unity SDK supports only Android ("Google Play" in some cases), iOS and Unity Editor.
Make it support multiple platforms, like WebGL, Consoles, etc as much as possible.15 votes -
Improve performance & speed of client side write
I've used both Firestore and MongoDB's Realm Device Sync. While Firestore works great in terms of scaling, the performance and speed for client side write is far behind realm, especially when client side is doing some batch writes.
Realm uses techniques like data compression and delta sync to reduce the data size when uploading (https://www.mongodb.com/docs/atlas/app-services/sync/details/protocol/), I'd like to see Firestore doing the same and improve the performance of client side batch write.
Also, what I've noticed is that Firestore's client side write performance degrades a lot after some time being offline, this isn't great for apps that would…
6 votes -
14 votes
-
14 votes
-
Firebase SDK support for winui 3 applications
I need a complete Firebase SDK: authentication, Firestore with cache, functions etc. for my winui 3 applications.
2 votes -
Lazy loading of items in firebase console for firestore
Console has become laggy and returns a wait for page to load alert if a document has to many fields
4 votes -
Add option to save a query in Firestore Query Builder
I have some queries that I perform frequently through Firestore Query Builder. It would be great to save queries to be able to run them with one click.
2 votes -
Manage minInstances setting of pinned functions of previous releases
Pinned functions of previous releases keep their minInstances setting. E.g. after deploying 10 times with a minInstances setting of 1, there will be 10 idling instances but only the newest revision handles all the traffic. Yet the remaining 9 instances' idle time is billed as well because the function is still addressable through the revision tag.
This also affects the maxInstances setting: With a maxInstances setting of 10, the newest Cloud Run revision which handles 100% of the traffic won't be able to scale anymore.
As far as I know, the only way to handle this right now is to…
5 votes -
CDN Invalidation API
Add an official API to support cache invalidation via resource URL, header, or tag.
The rate limit to such an API should be high enough to support what people already do with the non-official API to invalidate by URL.
12 votes -
Add TTL dynamically
Similar to the way we can define an index in firestore with
firestore.indexes.json
. I'm proposing afirestore.ttl.json
where the TTL properties would be deployed uponfirebase deploy
, instead of having to go in the console UI or alternative methods.Those configuration files are useful when switching environment as this minimize the configuration required when going from dev, to staging, to prod. Centralizing those in one place makes it easier.
2 votes -
13 votes
-
Estimate costs
It should be possible to estimate Firebase costs using the emulator.
Example workflow for comparing Firestore data structures in terms of costs:
- setup test for each data structure
- signal start of costs recording
- run test for first data structure againt the Firestore emulator
- signal stop of costs recording
- run again for second data structure3 votes -
Pass all cookies to Cloud Functions or Cloud Run
Right now only a _session Cookie is passed.
https://firebase.google.com/docs/hosting/manage-cache#usingcookies5 votes -
Make the functions npm dependencies cache list public
An article and youtube video explains how to optimize cold boots by updating dependencies to 'commonly used versions' as this will increase the chance that the dependencies can already be found in the 'dependencies cache'.
https://medium.com/@duhroach/improving-cloud-function-cold-start-time-2eb6f5700f6
This is quite vague and a bit hard to reason about. Would it be possible to see a list of package names and version info for all packages in the dependencies cache?
5 votes -
Cretoin
Checking app
1 vote -
A/B Testing activation and goal event with event params
Currently in A/B Testing users can set activation and goal events using only event names.
It would be awesome to have an option to use a generic event with its params. Eg. using a
screen_view
event withscreen_name
as activation event for entering a specific screen instead of creating a custom event just for testing purpose.It would be beneficial for heavy A/B Testing users, especially taking into account that they can create only 500 custom event names. And don't make me tell you that creating a custom event or two for every A/B test can burn those 500 event…
5 votes -
Firebase Emulator: Allow us to enter uid when adding Authenticator user
This is already possible via the API, so why not via the emulator UI?
3 votes -
Allow specify domains/subdomains in realtime database/firestore/storage
Sometimes we don't want authentication to access realtime database/firestore/storage
But we need enable access from specific domain/subdomain source restriction only
3 votes -
Install extensions on certain project/environment only
I'd like to have an option to install an extension for certain project in my code base.
For example, I want to use algolia search extension on a collection that will only only exists in dev project, but I ended up deploying this extension in prod as well.
I can't seem to find a way not to deploy extensions that are meant to be in dev only to prod.
1 vote
- Don't see your idea?