A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/seppo0010/objc-rlite below:

seppo0010/objc-rlite: objective-c bindings for rlite

To run the example project, clone the repo, and run pod install from the Example directory first.

#import <objc-rlite/ObjCHirlite.h>

// ...

- (void) myMethod {
    NSArray* paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString* documentsDirectory = [paths objectAtIndex:0];
    NSString* path = [documentsDirectory stringByAppendingPathComponent:@"mydb.rld"];

    ObjCHirlite* rlite = [[ObjCHirlite alloc] initWithPath:path];
    [rlite command:@[@"set", @"key", @"value"]];
    NSLog(@"%@", [rlite command:@[@"get", @"key"]]); // @"value"

    [rlite command:@[@"rpush", @"list", @1, @2, @3]]
    NSLog(@"%@", [rlite command:@[@"lrange", @"list", @0, @-1]]); // @[@"1", @"2", @"3"]
}

ObjCHirlite.command: receives an array of arguments that will be sent directly to rlite, transforming every object into an instance of NSData using ObjCHirlite.encoding (NSUTF8StringEncoding by default).

Responses will be transformed into the corresponding objective-c class.

Notice that retrieving a value that was set as a number will return a string object, since the number was serialized as a string.

To retrieve binary data from the database set binary to true in the call to ObjCHirlite.command:binary: and the response will be an instance (or an array of instances) of NSData instead of NSString.

objc-rlite is available through CocoaPods. To install it, simply add the following line to your Podfile:

Sebastian Waisbrot, seppo0010@gmail.com

objc-rlite is available under the MIT license. See the LICENSE file for more info.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4