Skip to content

Instantly share code, notes, and snippets.

@AeroNotix
Created February 11, 2022 00:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AeroNotix/19806ae1663a7428a682fb9bd53148e9 to your computer and use it in GitHub Desktop.
Save AeroNotix/19806ae1663a7428a682fb9bd53148e9 to your computer and use it in GitHub Desktop.
CL-IOURING> (time (dotimes (i 10) (length (let ((ring (make-instance 'ring :entries 10)))
(readv-file ring "/home/xeno/f" :block-size 97658)))))
Evaluation took:
10.273 seconds of real time
10.259913 seconds of total run time (8.702082 user, 1.557831 system)
[ Run times consist of 0.014 seconds GC time, and 10.246 seconds non-GC time. ]
99.87% CPU
30,751,975,488 processor cycles
5,000,016,656 bytes consed
NIL
CL-IOURING> (time (dotimes (i 10) (uiop:read-file-string "/home/xeno/f")))
Evaluation took:
33.653 seconds of real time
33.586422 seconds of total run time (32.209353 user, 1.377069 system)
99.80% CPU
100,713,147,884 processor cycles
9,369,024,032 bytes consed
NIL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment