Google Firebase is a Google-backed application development software that enables developers to develop Android, iOS, and Web apps. Firebase provides features like analytics, reporting and fixing app crashes, creating marketing and product experiments, and also provide real-time database.
The Firebase real-time database is a cloud-hosted and simple JSON formatted NoSQL database that enables data to be stored in single-rooted JSON format and synced between users in real-time. The data is synced across all clients in real-time and is still available when an app goes offline.
To create HTTP requests and response service APIs, we need to do a lot of configuration, and we also need knowledge of backend services. Also to synchronize our local database to the server is a difficult task for developers. Instead of typical HTTP requests, the firebase data indexing in realtime provides event-based data synchronization. Every time data changes, all connected device receives that update within milliseconds. The data change events are invoked with all connected devices and provide updated data. The data change events are invoked with all connected devices, and provide updated data.
Maintaining offline data is also very simple in firebase because firebase apps remain responsive even when offline. The Firebase Realtime Database SDK persists your data to disk. Once connectivity is reestablished, the client device receives any changes it missed, synchronizing it with the current server state.
The firebase data indexing in realtime can be accessed directly from a mobile device or web browser. There’s no need for an application server. Security and data validation are available through the Firebase Realtime Database Security Rules, expression-based rules that are executed when data is read or written.
Firebase provides the best solutions for mobile app development. Firebase Real-Time database is one of the good features of that. But it has its own advantages and limitations also.
As we know, Firebase real-time data fetch listeners work fine with a small amount of data, but as data increases the performance of data read is also decreases.
In this blog, we are going to discuss the indexing of the firebase data fields and values to increase the performance of the firebase query. Indexing increases the performance of orderByChild() and orderByValue() queries.
A node’s key is indexed automatically, so there is no need to index it explicitly. Firebase supports indexing by field names and field values.
Explicit indexing is added in the section of the Rules tab of the Real-Time database.
To demonstrate how .indexOn works with orderByValue(), Suppose we have a database structure of cricket players World Cup runs like,
{ "scores": { "ViratKholi" :557, "MSDhoni" : 346, "RohitSharma" : 746, "ShikharDhawan" : 256, "KLRahul" : 545, "RPant" : 228 } }
We’re using orderByValue() to get players sorted by scores of World Cup OR top scorers by .orderByValue() followed by .limitToFirst(). We can optimize our queries by adding a .value rule on our /scores node:
{ "rules": { "scores": { ".indexOn": ".value" } } }
We will use the following Database structure to explain how .indexOn works with orderByChild().
"employee":{ "employee1": { "empName" :Rohit Sharma, "branchName" : Noida, "Designation" : SW Developer, "empId" : EMP776, "salary": { "basic" :20000, "HA" : 5000, "PF" : 2500, "OA" : 2500, "total" : 30000, } }, "employee2": { "empName" :Virat Kholi, "branchName" : Dheli, "Designation" : SW Developer, "empId" : EMP908, "salary": { "basic" :25000, "HA" : 5000, "PF" : 5000, "OA" : 5000, "total" : 40000, } } }
Now, if you want to order the data by empName, empId, and designation you need to update rules as follows,
{ "rules": { "employee": { ".indexOn": ["empName", "empId", "designation"] } } }
You can add indexing on any level of data as other rules. If you want to add indexing on empName, empId which is on the first level, and basic, total which is on the second level of employee data structure, you need to update rules as follows,
{ "rules": { "employee": { ".indexOn": ["empName", "empId","salary/basic", "salary/total"] } } }
There is another way to specify multilevel indexing as,
{ "rules": { "employee": { ".indexOn": ["empName", "empId", "designation"], "$key": { "salary": { ".indexOn": ["basic", "total"] } } } } }
You can create indexing on any of your node with a comma separating as,
{ "rules": { "employee": { ".indexOn": ["empName", "empId","salary/basic", "salary/total"] }, "scores": { ".indexOn": ".value" } } }
As all Firebase real-time database users experience that data fetch delay increases when they are having the bulk of data in the database. So to improve performance, indexing is very helpful. The performance of the real-time database is more dependent on what kind of data structure you have chosen.
Vikram is a Android developer with over 5+ work of experience with good knowledge in Android, Firebase and UPI payment SDK implementation. He has been worked as technical lead in microlucid technology. He is highly work-o-holic person and loves to teach and share knowledge among team mates.
Get the latest updates by sharing your email.
Flexible Engagement Model | Secure & Scalable Apps | First Time Right Process
Mindbowser helped us build an awesome iOS app to bring balance to people’s lives.
We had very close go live timeline and MindBowser team got us live a month before.
They were a very responsive team! Extremely easy to communicate and work with!
We’ve had very little-to-no hiccups at all—it’s been a really pleasurable experience.
Mindbowser is one of the reasons that our app is successful. These guys have been a great team.
Mindbowser was very helpful with explaining the development process and started quickly on the project.
The greatest benefit we got from Mindbowser is the expertise. Their team has developed apps in all different industries with all types of social proofs.
Mindbowser is professional, efficient and thorough.
Very committed, they create beautiful apps and are very benevolent. They have brilliant Ideas.
MindBowser was great; they listened to us a lot and helped us hone in on the actual idea of the app.” “They had put together fantastic wireframes for us.
They're very tech-savvy, yet humble.
Ayush was responsive and paired me with the best team member possible, to complete my complex vision and project. Could not be happier.
As a founder of a budding start-up, it has been a great experience working with Mindbower Inc under Ayush's leadership for our online digital platform design and development activity.
The team from Mindbowser stayed on task, asked the right questions, and completed the required tasks in a timely fashion! Strong work team!
They are focused, patient and; they are innovative. Please give them a shot if you are looking for someone to partner with, you can go along with Mindbowser.
We are a small non-profit on a budget and they were able to deliver their work at our prescribed budgets. Their team always met their objectives and I'm very happy with the end result. Thank you, Mindbowser team!!