Liking cljdoc? Tell your friends :D

asami.memory

A storage implementation over in-memory indexing.

A storage implementation over in-memory indexing.
raw docstring

as-databaseclj/s

(as-database graph)

Inputs: [graph :- GraphType] Returns: DatabaseType

Creates a Database around an existing Graph. graph: The graph to build a database around.

Inputs: [graph :- GraphType]
Returns: DatabaseType

Creates a Database around an existing Graph.
 graph: The graph to build a database around. 
sourceraw docstring

as-of*clj/s

(as-of* {:keys [graph history timestamp] :as db} t)

Inputs: [{:keys [graph history timestamp], :as db} :- DatabaseType t :- (s/cond-pre s/Int (s/pred instant?))] Returns: DatabaseType

Retrieves the database as of a given moment, inclusive. The t value may be an instant, or a transaction ID. The database returned will be whatever database was the latest at the specified time or transaction.

Inputs: [{:keys [graph history timestamp], :as db} :- DatabaseType t :- (s/cond-pre s/Int (s/pred instant?))]
Returns: DatabaseType

Retrieves the database as of a given moment, inclusive.
 The t value may be an instant, or a transaction ID.
 The database returned will be whatever database was the latest at the specified time or transaction.
sourceraw docstring

as-of-t*clj/s

(as-of-t* {history :history :as db})

Inputs: [{history :history, :as db} :- DatabaseType] Returns: s/Int

Returns the as-of point for a database, or nil if none

Inputs: [{history :history, :as db} :- DatabaseType]
Returns: s/Int

Returns the as-of point for a database, or nil if none
sourceraw docstring

db*clj/s

(db* connection)

Inputs: [connection :- ConnectionType] Returns: DatabaseType

Retrieves the most recent value of the database for reading.

Inputs: [connection :- ConnectionType]
Returns: DatabaseType

Retrieves the most recent value of the database for reading.
sourceraw docstring

empty-graphclj/s

source

empty-multi-graphclj/s

source

entity*clj/s

(entity* {graph :graph :as db} id nested?)

Inputs: [{graph :graph, :as db} id nested?] Returns: #:s{Any s/Any}

Returns an entity based on an identifier, either the :db/id or a :db/ident if this is available. This eagerly retrieves the entity. Objects may be nested, but references to top level objects will be nil in order to avoid loops.

Inputs: [{graph :graph, :as db} id nested?]
Returns: #:s{Any s/Any}

Returns an entity based on an identifier, either the :db/id or a :db/ident if this is available. This eagerly retrieves the entity.
 Objects may be nested, but references to top level objects will be nil in order to avoid loops.
sourceraw docstring

graph*clj/s

(graph* database)

Inputs: [database :- DatabaseType] Returns: GraphType

Returns the Graph object associated with a Database

Inputs: [database :- DatabaseType]
Returns: GraphType

Returns the Graph object associated with a Database
sourceraw docstring

instant?clj/s

(instant? t)

Tests if a value is a timestamp

Tests if a value is a timestamp
sourceraw docstring

MemoryConnectionclj/s

source

MemoryDatabaseclj/s

source

new-connectionclj/s

(new-connection name gr)

Inputs: [name :- s/Str gr :- GraphType] Returns: ConnectionType

Creates a memory Connection object

Inputs: [name :- s/Str gr :- GraphType]
Returns: ConnectionType

Creates a memory Connection object
sourceraw docstring

next-tx*clj/s

(next-tx* connection)

Inputs: [connection :- ConnectionType] Returns: s/Num

Inputs: [connection :- ConnectionType]
Returns: s/Num
sourceraw docstring

nowclj/s

(now)

Creates an object to represent the current time

Creates an object to represent the current time
sourceraw docstring

since*clj/s

(since* {:keys [graph history timestamp] :as db} t)

Inputs: [{:keys [graph history timestamp], :as db} :- DatabaseType t :- (s/cond-pre s/Int (s/pred instant?))] Returns: (s/maybe DatabaseType)

Returns the value of the database since some point t, exclusive. t can be a transaction number, or instant.

Inputs: [{:keys [graph history timestamp], :as db} :- DatabaseType t :- (s/cond-pre s/Int (s/pred instant?))]
Returns: (s/maybe DatabaseType)

Returns the value of the database since some point t, exclusive.
 t can be a transaction number, or instant.
sourceraw docstring

since-t*clj/s

(since-t* {history :history :as db})

Inputs: [{history :history, :as db} :- DatabaseType] Returns: s/Int

Returns the since point of a database, or nil if none

Inputs: [{history :history, :as db} :- DatabaseType]
Returns: s/Int

Returns the since point of a database, or nil if none
sourceraw docstring

transact-data*clj/s

(transact-data* conn asserts retracts)

Inputs: [conn :- ConnectionType asserts :- [s/Any] retracts :- [s/Any]] Returns: [(s/one DatabaseType "The database before the operation") (s/one DatabaseType "The database after the operation")]

Removes a series of tuples from the latest graph, and asserts new tuples into the graph. Updates the connection to the new graph.

Inputs: [conn :- ConnectionType asserts :- [s/Any] retracts :- [s/Any]]
Returns: [(s/one DatabaseType "The database before the operation") (s/one DatabaseType "The database after the operation")]

Removes a series of tuples from the latest graph, and asserts new tuples into the graph.
 Updates the connection to the new graph.
sourceraw docstring

transact-update*clj/s

(transact-update* conn update-fn)

Inputs: [conn :- ConnectionType update-fn :- (s/pred fn?)] Returns: [(s/one DatabaseType "The database before the operation") (s/one DatabaseType "The database after the operation")]

Updates a graph with a function, updating the connection to the new graph. The function accepts a graph and a transaction ID. Returns a pair containing the old database and the new one.

Inputs: [conn :- ConnectionType update-fn :- (s/pred fn?)]
Returns: [(s/one DatabaseType "The database before the operation") (s/one DatabaseType "The database after the operation")]

Updates a graph with a function, updating the connection to the new graph.
The function accepts a graph and a transaction ID.
Returns a pair containing the old database and the new one.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close