Inherits from RedlandWrappedObject : NSObject
Declared in RedlandStorage.h
RedlandStorage.m

Overview

This class provides storage for RDF models either in memory or persistent storage.

The interface of this class is currently incomplete, as most methods are simply duplicates of the RedlandModel methods. If direct manipulation of the storage is necessary, you can use the standard C API on the underlying librdf_storage instead.

Tasks

Other Methods

Other Methods

  • – init

    Initializes a new in-memory, context-enabled hash storage.

Instance Methods

init

Initializes a new in-memory, context-enabled hash storage.

- (id)init

Discussion

Initializes a new in-memory, context-enabled hash storage.

Declared In

RedlandStorage.m

initWithFactoryName:identifier:options:

The designated initializer, initialises a new RedlandStorage.

- (id)initWithFactoryName:(NSString *)factoryName identifier:(NSString *)anIdentifier options:(NSString *)someOptions

Parameters

factoryName

Name of the storage factory

anIdentifier

Storage identifier (may be used as a file name)

someOptions

Storage options (see the Redland C documentation for possible values)

Discussion

The designated initializer, initialises a new RedlandStorage.

Declared In

RedlandStorage.m

wrappedStorage

Returns the underlying librdf_storage pointer of the receiver.

- (librdf_storage *)wrappedStorage

Discussion

Returns the underlying librdf_storage pointer of the receiver.

Declared In

RedlandStorage.m