Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase query - Find item with child that contains string

I'm having a bit of trouble with a Firebase Query. I want to query for objects, where the objects child value contains a certain string. So far I have something that looks like this:

Firebase *ref = [[Firebase alloc] initWithUrl:@"https://dinosaur-facts.firebaseio.com/dinosaurs"];
[[[[ref queryOrderedByKey] queryStartingAtValue:@"b"] queryEndingAtValue:@"b~"]
    observeEventType:FEventTypeChildAdded withBlock:^(FDataSnapshot *snapshot) {
    NSLog(@"%@", snapshot.key);
}];

But that only gives objects that have a starting value of "b". I want objects that contains the string "b". How do I do that?

like image 540
Holger Sindbaek Avatar asked Feb 18 '15 16:02

Holger Sindbaek


People also ask

How to search for a child in Firebase?

You can use equalTo() to find any child by value. In your case by name : ref. child('users').

How do I get particular data from Firebase?

Firebase data is retrieved by either a one time call to GetValueAsync() or attaching to an event on a FirebaseDatabase reference. The event listener is called once for the initial state of the data and again anytime the data changes.

How to search for a value in Firebase database?

Ways to Filter and Search data in Firebase Realtime databaseThrough the use of id , which is typically used to look for a specific value that has its id . Through the use of a child path from which any changes to data in the database are listed. Through the use of a variable that can be given as a parameter.

What does getKey () do Firebase?

Calling the getKey() method on this reference will return the auto-generated key which may then be used to store a corresponding value. Using Firebase to generate unique keys in this way is also of particular use when an app has multiple users creating child nodes at the same path in the tree.


1 Answers

There are no contains or fuzzy matching methods in the query API, which you have probably already guessed if you've scanned the API and the guide on queries.

Not only has this subject been discussed ad nauseam on SO [1] [2] [3] [4] [5], but I've touched several times on why one should use a real search engine, instead of attempting this sort of half-hearted search approach.

There is a reason it's often easier to Google a website to find results than to use the built-in search, and this is a primary component of that failure.

With all of that said, the answer to your question of how to do this manually, since there is no built-in contains, is to set up a server-side process that loads/streams data into memory and does manual searching of the contents, preferably with some sort of caching.

But honestly, ElasticSearch is faster and simpler, and more efficient here. Since that's a vast topic, I'll defer you to the blog post on this subject.

like image 149
Kato Avatar answered Nov 04 '22 03:11

Kato