Liking cljdoc? Tell your friends :D

cascalog.in-memory.platform

The In-Memory platform enables Cascalog to query data without the need for Hadoop. Instead, the data is manipulated entirely in-memory using just Clojure.

First, Cascalog converts the generators into tuples (which are just a sequence of maps). Cascalog then maps, filters, and aggregates the tuples. Finally, it uses sinks to output the resulting tuples.

The In-Memory platform enables Cascalog to query data without the
need for Hadoop.  Instead, the data is manipulated entirely in-memory
using just Clojure.

First, Cascalog converts the generators into tuples (which are just a
sequence of maps).  Cascalog then maps, filters, and aggregates
the tuples.  Finally, it uses sinks to output the resulting tuples.
raw docstring

cascalog.in-memory.testing

No vars found in this namespace.

cascalog.in-memory.tuple

Tuples encapsulate the data that Cascalog queries. An individual tuple contains a field name and a value. It is represented as a map. So tuples are just a sequence of maps, and an example is: [{'?num' 1} {'?num' 2}].

Tuples encapsulate the data that Cascalog queries.  An individual
tuple contains a field name and a value.  It is represented as a map.
So tuples are just a sequence of maps, and an example is:
[{'?num' 1} {'?num' 2}].
raw docstring

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

× close