README.rst 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. Lakesuperior
  2. ============
  3. |build status| |docs| |pypi| |codecov|
  4. Lakesuperior is a Linked Data repository software. It is capable of storing and
  5. managing large volumes of files and their metadata regardless of their
  6. format, size, ethnicity, gender identity or expression.
  7. Lakesuperior is an alternative `Fedora Repository
  8. <http://fedorarepository.org>`__ implementation. Fedora is a mature repository
  9. software system historically adopted by major cultural heritage institutions
  10. which extends the `Linked Data Platform <https://www.w3.org/TR/ldp-primer/>`__
  11. protocol.
  12. Guiding Principles
  13. ------------------
  14. Lakesuperior aims at being a reliable and efficient Fedora 4 implementation.
  15. Its main goals are:
  16. - **Reliability:** Based on solid technologies with stability in mind.
  17. - **Efficiency:** Small memory and CPU footprint, high scalability.
  18. - **Ease of management:** Tools to perform migration, monitoring and
  19. maintenance included.
  20. - **Simplicity of design:** Straight-forward architecture, robustness
  21. over features.
  22. Key features
  23. ------------
  24. - Stores binary files and RDF metadata in one repository.
  25. - Multi-modal access: REST/LDP, command line and native Python API.
  26. - (`almost <fcrepo4_deltas>`_) Drop-in replacement for Fedora4
  27. - Very stable persistence layer based on
  28. `LMDB <https://symas.com/lmdb/>`__ and filesystem. Fully
  29. ACID-compliant writes guarantee consistency of data.
  30. - Term-based search and SPARQL Query API + UI
  31. - No performance penalty for storing many resources under the same
  32. container, or having one resource link to many URIs
  33. - Extensible provenance metadata tracking
  34. - Fits in a pocket: you can carry 50M triples in an 8Gb memory stick.
  35. Installation & Documentation
  36. ----------------------------
  37. With Docker::
  38. git clone --recurse-submodules https://github.com/scossu/lakesuperior.git
  39. cd lakesuperior
  40. docker-compose up
  41. With pip (requires a C compiler to be installed)::
  42. pip install lakesuperior
  43. The full, current documentation is maintained in `Read The Docs
  44. <http://lakesuperior.readthedocs.io/>`__. Please refer to that for more info,
  45. including installation instructions.
  46. .. |build status| image:: http://img.shields.io/travis/scossu/lakesuperior/master.svg?style=flat
  47. :alt: Build Status
  48. :target: https://travis-ci.org/username/repo
  49. .. |docs| image:: https://readthedocs.org/projects/lakesuperior/badge/
  50. :alt: Documentation Status
  51. :target: https://lakesuperior.readthedocs.io/en/latest/?badge=latest
  52. .. |pypi| image:: https://badge.fury.io/py/lakesuperior.svg
  53. :alt: PyPI Package
  54. :target: https://badge.fury.io/py/lakesuperior
  55. .. |codecov| image:: https://codecov.io/gh/scossu/lakesuperior/branch/master/graph/badge.svg
  56. :alt: Code coverage
  57. :target: https://codecov.io/gh/scossu/lakesuperior