Jeff Hammerbacher <ham...@cloudera.com> writes:

> Hey Matthias,
>
> To use Django's model object for this task, you will need to implement a
> custom manager for your file's structure; you can see some basic
> documentation at
> http://docs.djangoproject.com/en/dev/topics/db/managers/#topics-db-managers.
> It should be noted that Django's ORM is not well suited to non-relational
> data sources right now, from my brief experience, so you'll probably be
> better off implementing your own class to perform these manipulations.

This helps, thank you.

I didn't know that Model.objects is a Manager.  This is not mentioned
on http://docs.djangoproject.com/en/dev/topics/db/models/

I am happy to implement my own class to do what I want.  I just want
to implement enough of the standard interfaces to allow my app to
integrate well into any Django project without requiring special
treatment.

You might have guessed that I am an absolute greenhorn regarding
Django.  Right now I am trying to understand enough of how it works
under the hood since I want to leave the standard way of doing things.

Matthias

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to