Top Level Namespace

Defined Under Namespace

Classes: Sadie

Instance Method Summary collapse

Instance Method Details

#S(key) ⇒ Object

Description: Sadie

Sadie is a data framework intended to ease the pain of constructing, accessing, and managing the resources required by large stores of inter-related data. It supports sessions, lazy, on-demand, one-time evaluation and file-based storage/retrieval operations for resource-heavy data.

For simplicity, it supports simple, ini-style data initialization, but for efficient optimization of resource-intensive computations, it supports on-demand, one-time evaluation of "primers" which may define, or prime, multiple key, value pairs in a single run.



19
20
21
22
# File 'lib/sadie.rb', line 19

def S( key )
    instance = Sadie::getCurrentSadieInstance
    return instance.get( key )
end