Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oubiwann-unsupported/django-riak-engine
A Riak (nosql) backend for Django
https://github.com/oubiwann-unsupported/django-riak-engine
Last synced: 3 months ago
JSON representation
A Riak (nosql) backend for Django
- Host: GitHub
- URL: https://github.com/oubiwann-unsupported/django-riak-engine
- Owner: oubiwann-unsupported
- License: bsd-2-clause
- Created: 2011-08-29T03:41:33.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2011-12-22T23:37:27.000Z (almost 13 years ago)
- Last Synced: 2024-07-19T22:50:22.820Z (4 months ago)
- Language: Python
- Homepage:
- Size: 167 KB
- Stars: 38
- Watchers: 3
- Forks: 8
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
~~~~~~~~~~~~~~~~~~
django-riak-engine
~~~~~~~~~~~~~~~~~~.. contents::
:depth: 3Please note: this is a *development* README! None of this works yet. When we're
done, this is what you will read to learn about and use this product :-)============
Introduction
============About Riak
----------Riak is a nosql database solution, built with Erlang and designed to duplicate
the functionality of Amazon's Dynamo.Riak has a pluggable backend for its core shard-partitioned storage, with the
default storage backend being Bitcask. Riak also has
built-in MapReduce with native support for both JavaScript (using the
SpiderMonkey runtime) and Erlang, while supporting a variety of additional
language drivers, including Python.For a comparison of Riak with other nosql solutions, visit this page:
* http://wiki.basho.com/Riak-Comparisons.html
For a general nosql comparison, read this blog post:
* http://kkovacs.eu/cassandra-vs-mongodb-vs-couchdb-vs-redis
About django-riak-engine
------------------------In order to be used in Django-nonrel applications, this project is cenetered
upon creating the necessary database adaptors for Django.Community
---------There is a development discussion Google group here for public participation of
anyone interested in coding on the project:* http://groups.google.com/group/django-riak-dev
============
Installation
============Dependencies
------------django_riak_engine has the following dependencies:
* Python
* Riak
* Python drivers for Riak
* Django nonrel
* Django toolbox
* Django Riak engineDevelopment
-----------If you want to assist with developement of django_riak_engine or use the latest
code we're working on, you can install from the sources. Once you have git
installed, just do the following::$ git clone [email protected]:oubiwann/django-riak-engine.git
$ cd django-riak-engine
$ make installEasy Install
------------You can use the setuptools easy_install script to get django_riak_engine on
your system (add ``sudo`` at beginning if not inside virtualenv)::$ easy_install django-riak-engine
Manual Download
---------------You can manually download the source tarball from the Python Package Index by
visiting the following URL:http://pypi.python.org/pypi/django-riak-engine
You'll need to untar and gunzip the source, cd into the source directory, and
then you can do the usual::$ sudo python setup.py install
Checking the Source
-------------------Once installed, you can test the source code by executing this in your local
source tree::$ make check
That will run the test suite and report on ther successes and/or failures.
=====
Usage
=====Setting up Django
-----------------Let's get started with a demo app::
$ django-admin.py startproject riakproj
$ cd riakproj
$ django-admin.py startapp riakappConfigure the app to talk to a specific database in settings.py::
DATABASES = {
'default': {
'ENGINE': 'django_riak_engine.riak',
'NAME': 'mydatabase',
'USER': '',
'PASSWORD': '',
'HOST': 'localhost',
'PORT': '8091',
'SUPPORTS_TRANSACTIONS': False,
},
}Using the Database
------------------Let's created a model::
from django.db import models
class Article(models.Model):
title = models.CharField(max_length = 64)
content = models.TextField()And a quick view that exercises it::
from django.http import HttpResponse
from models import *def testview(request):
article = Article(title = 'test title',
content = 'test content')
article.save()return HttpResponse("
Saved!
")Now let's use the Django Riak API::
db.riakapp_article.find()
To get a list of all articles::
articles = Article.objects.all()
====
TODO
====Infrastructure
--------------Get the base unit tests set up.
Implementation
--------------Everything.
Testing
-------All the implementation.
Documentation
-------------All the implementation.
=======
Changes
=======Version 0.1
-----------* Initial release of django_riak_engine.