Files
redis-docs/docs/RedisInternals.rst
Kenneth Reitz 525e9fd3d3 all into sphinx
2011-04-06 13:27:48 -04:00

38 lines
1.2 KiB
ReStructuredText
Raw Permalink Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
`|Redis Documentation| <index.html>`_
**RedisInternals: Contents**
  `Redis Internals <#Redis%20Internals>`_
    `Redis STRINGS <#Redis%20STRINGS>`_
    `Redis Virtual Memory <#Redis%20Virtual%20Memory>`_
    `Redis Event Library <#Redis%20Event%20Library>`_
RedisInternals
==============
Redis Internals
===============
This is a source code level documentation of Redis.
Redis STRINGS
-------------
String is the basic building block of Redis types.
Redis is a key-value store. All Redis keys are strings and its also
the simplest value type.
Lists, sets, sorted sets and hashes are other more complex value
types and even these are composed of strings.
`Hacking Strings <HackingStrings.html>`_ documents the Redis String
implementation details.
Redis Virtual Memory
--------------------
A technical specification full of details about the
`Redis Virtual Memory subsystem <VirtualMemorySpecification.html>`_
Redis Event Library
-------------------
Read `event library <EventLibray.html>`_ to understand what an
event library does and why its needed.
`Redis event library <RedisEventLibrary.html>`_ documents the
implementation details of the event library used by Redis
.. |Redis Documentation| image:: redis.png