1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
|
# data.fressian
Read and write fressian data. See https://github.com/Datomic/fressian/wiki
# Releases and Dependency Information
[Leiningen](https://github.com/technomancy/leiningen) dependency information:
[org.clojure/data.fressian "0.2.1"]
[Maven](http://maven.apache.org/) dependency information:
<dependency>
<groupId>org.clojure</groupId>
<artifactId>data.fressian</artifactId>
<version>0.2.1</version>
</dependency>
Other versions:
* [All Released Versions](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.clojure%22%20AND%20a%3A%22data.fressian%22)
* [Development Snapshots](https://oss.sonatype.org/index.html#nexus-search;gav~org.clojure~data.fressian~~~)
* [Development Snapshot Repositories](http://dev.clojure.org/display/doc/Maven+Settings+and+Repositories)
# Usage
[API Documentation](http://clojure.github.com/data.fressian/)
Basic examples:
```clojure
(require '[clojure.data.fressian :as fress])
;; read / write objects
(fress/write x)
(fress/read)
;; create reader/write on input/output streams
(fress/create-reader is)
(fress/create-writer os)
```
It is also possible to create custom tags and handlers. For more information see [Creating custom handlers](https://github.com/clojure/data.fressian/wiki/Creating-custom-handlers) for details.
# Developer Information
* [GitHub project](https://github.com/clojure/data.fressian)
* [Bug Tracker](http://dev.clojure.org/jira/browse/DFRS)
* [Continuous Integration](http://build.clojure.org/job/data.fressian/)
* [Compatibility Test Matrix](http://build.clojure.org/job/data.fressian-test-matrix/)
# Copyright and License
Copyright (c) Cognitect, Inc. All rights reserved. The use and
distribution terms for this software are covered by the Eclipse Public
License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) which can
be found in the file epl-v10.html at the root of this distribution.
By using this software in any fashion, you are agreeing to be bound by
the terms of this license. You must not remove this notice, or any
other, from this software.
|