ns form housekeeping
This commit is contained in:
parent
56b3f5c365
commit
4aa1a3b871
2 changed files with 21 additions and 18 deletions
|
|
@ -1,12 +1,15 @@
|
||||||
(ns taoensso.nippy
|
(ns taoensso.nippy
|
||||||
"High-performance serialization library for Clojure"
|
"High-performance serialization library for Clojure"
|
||||||
{:author "Peter Taoussanis (@ptaoussanis)"}
|
{:author "Peter Taoussanis (@ptaoussanis)"}
|
||||||
(:require [taoensso.encore :as enc :refer (cond*)]
|
(:require
|
||||||
|
[taoensso.encore :as enc :refer [cond*]]
|
||||||
[taoensso.nippy
|
[taoensso.nippy
|
||||||
(utils :as utils)
|
[utils :as utils]
|
||||||
(compression :as compression)
|
[compression :as compression]
|
||||||
(encryption :as encryption)])
|
[encryption :as encryption]])
|
||||||
(:import [java.io ByteArrayInputStream ByteArrayOutputStream DataInputStream
|
|
||||||
|
(:import
|
||||||
|
[java.io ByteArrayInputStream ByteArrayOutputStream DataInputStream
|
||||||
DataOutputStream Serializable ObjectOutputStream ObjectInputStream
|
DataOutputStream Serializable ObjectOutputStream ObjectInputStream
|
||||||
DataOutput DataInput]
|
DataOutput DataInput]
|
||||||
[java.lang.reflect Method]
|
[java.lang.reflect Method]
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
(ns taoensso.nippy.benchmarks
|
(ns taoensso.nippy.benchmarks
|
||||||
(:require [clojure.data.fressian :as fressian]
|
(:require [clojure.data.fressian :as fressian]
|
||||||
[taoensso.encore :as enc]
|
[taoensso.encore :as enc]
|
||||||
[taoensso.nippy :as nippy :refer (freeze thaw)]))
|
[taoensso.nippy :as nippy :refer [freeze thaw]]))
|
||||||
|
|
||||||
(def data #_22 nippy/stress-data-benchable)
|
(def data #_22 nippy/stress-data-benchable)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue