Liking cljdoc? Tell your friends :D

taoensso.tufte.impl

Private implementation details. profiled -> [<result> <derefable-and-mergeable-pstats>].

Profiling consists of:

  1. State init ; On thread
  2. Capture ; On thread
  3. State deref ; On thread
  4. ?Merging ; Off thread, on demand (deferred cost)
  5. ?Realization ; Off thread, on demand (deferred cost)

Basic implementation:

  • Capture [<id> <elapsed>]s into single mutable acc
    • May compact acc to id-times, {<id> (<time> ...)}
    • May compact id-times to id-stats, {<id> (<stats/stats> ...)}
  • Merge pours (read-only) acc0 + acc1 into id-times
    • May compact id-times to id-stats, {<id> (<stats/stats> ...)}
  • Realization:
    • Generates {<id> <stats/stats>} from id-times.
    • Merges with id-stats.
Private implementation details.
`profiled` -> [<result> <derefable-and-mergeable-pstats>].

Profiling consists of:
  1. State init   ; On  thread
  2. Capture      ; On  thread
  3. State deref  ; On  thread
  4. ?Merging     ; Off thread, on demand (deferred cost)
  5. ?Realization ; Off thread, on demand (deferred cost)

Basic implementation:
  - Capture [<id> <elapsed>]s into single mutable acc
    - May compact acc      to id-times, {<id> (<time>        ...)}
    - May compact id-times to id-stats, {<id> (<stats/stats> ...)}
  - Merge pours (read-only) acc0 + acc1 into id-times
    - May compact id-times to id-stats, {<id> (<stats/stats> ...)}
  - Realization:
      - Generates {<id> <stats/stats>} from id-times.
      - Merges with id-stats.
raw docstring

*pdata*clj/s

nnil iff dynamic profiling active

nnil iff dynamic profiling active
sourceraw docstring

capture-time!clj/s

(capture-time! pd id ns-elapsed)
source

ElapsedTimeAcccljs

source

handle!clj/s

(handle! m)
source (clj)source (cljs)

handlers_clj/s

{<hid> <handler-fn>}

{<hid> <handler-fn>}
sourceraw docstring

merge-pstatsclj/s

(merge-pstats ps0 ps1)
(merge-pstats nmax ps0 ps1)

Compacting merge

Compacting merge
sourceraw docstring

new-pdata-dynamicclj/s

(new-pdata-dynamic nmax)
source

new-pdata-localclj/s

(new-pdata-local nmax)
source

PDatacljs

source

pdata-proxy-getclj/s

(pdata-proxy-get)
source (clj)source (cljs)

pdata-proxy-popclj/s

(pdata-proxy-pop)
source (clj)source (cljs)

pdata-proxy-pushclj/s

(pdata-proxy-push v)
source (clj)source (cljs)

PStatecljs

source

PStatscljs

source

Timecljs

source

TimeSpancljs

source

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

× close