(delete conn table row-key)
(delete conn table row-key family)
(delete conn table row-key family columns)
(delete-by conn table & by)
Delete by using scan's syntax for the selection criteria.
Delete by using scan's syntax for the selection criteria.
(delete-column conn table row-key family column timestamp)
Delete the specified version of the specified column
Delete the specified version of the specified column
(find-by conn table row-key)
(find-by conn table row-key family)
(find-by conn table row-key family columns & {:keys [time-range] :as opts})
(hdata->map data
{:keys [result-key-type with-ts-per-cell?]
:or {result-key-type :keyword with-ts-per-cell? false}})
(lazy-scan conn table & {:keys [row-key-fn limit with-ts?] :as criteria})
Scan rows. Return a map with:
IMPORTANT: It's the responsibility of the caller to close table and scanner. Supported keys in criteria:
Scan rows. Return a map with: - table: the table object - scanner: the scanner object - rows: A lazy sequence with the rows IMPORTANT: It's the responsibility of the caller to close table and scanner. Supported keys in criteria: - row-key-fn - limit - with-ts? - keys-only? - from - to - starts-with
(scan conn table & {:keys [row-key-fn limit with-ts? lazy?] :as criteria})
Supported keys in criteria:
Supported keys in criteria: - row-key-fn - limit - with-ts? - keys-only? - from - to - starts-with - result-key-type - [:bytes :string :keyword] - with-ts-per-cell?
(store conn table row-key family)
(store conn table row-key family columns)
(store conn table row-key family columns timestamp)
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close