Tagged Questions

37
votes
6answers
7k views

Altering database tables in Django

I'm considering using Django for a project I'm starting (fyi, a browser-based game) and one of the features I'm liking the most is using syncdb to automatically create the database tables based on the ...
20
votes
5answers
8k views

Django persistent database connection

I'm using django with apache and mod_wsgi and PostgreSQL (all on same host), and I need to handle a lot of simple dynamic page requests (hundreds per second). I faced with problem that the bottleneck ...
20
votes
6answers
2k views

What is your favorite solution for managing database migrations in django?

I quite like Rails' database migration management system. It is not 100% perfect, but it does the trick. Django does not ship with such a database migration system (yet?) but there are a number of ...
19
votes
8answers
4k views

MySQL vs PostgreSQL? Which should I choose for my Django project?

My Django project is going to be backed by a large database with several hundred thousand entries, and will need to support searching (I'll probably end up using djangosearch or a similar project.) ...
16
votes
7answers
3k views

Atomic operations in Django?

I'm trying to implement (what I think is) a pretty simple data model for a counter: class VisitorDayTypeCounter(models.Model): visitType = models.CharField(max_length=60) visitDate = ...
15
votes
1answer
2k views

Threaded Django task doesn't automatically handle transactions or db connections?

I've got Django set up to run some recurring tasks in their own threads, and I noticed that they were always leaving behind unfinished database connection processes (pgsql "Idle In Transaction"). I ...
13
votes
4answers
6k views

SQLAlchemy and django, is it production ready?

Has anyone used SQLAlchemy in addition to Django's ORM? I'd like to use Django's ORM for object manipulation and SQLalchemy for complex queries (like those that require left outer joins). Is it ...
13
votes
9answers
899 views

Represent Ordering in a Relational Database

I have a collection of objects in a database. Images in a photo gallery, products in a catalog, chapters in a book, etc. Each object is represented as a row. I want to be able to arbitrarily order ...
12
votes
3answers
12k views

Django: QuerySet order by method

Let's say I have the following model: class Contest: title = models.CharField( max_length = 200 ) description = models.TextField() class Image: title = models.CharField( max_length = 200 ...
11
votes
3answers
540 views

How should I represent a bit flags int field in django admin?

I have a data model with a bitfield defined something like this: alter table MemberFlags add column title varchar(50) not null default ''; alter table MemberFlags add column value integer( 3) not ...
11
votes
3answers
2k views

Unique BooleanField value in Django?

Suppose my models.py is like so: class Character(models.Model): name = models.CharField(max_length=255) is_the_chosen_one = models.BooleanField() I want only one of my Character instances ...
11
votes
3answers
2k views

django AuditTrail vs Reversion

I am working on an new web app I need to store any changes in database to audit table(s). Purpose of such audit tables is that later on in a real physical audit we can asecertain what happened in a ...
10
votes
1answer
808 views

Is it posible to generate django models from the database?

I've been messing around with Django and the Django ORM at home, and I've got to say, I feel it is one of the best out there in terms of ease of use. However, I was wondering if it was possible to ...
9
votes
5answers
2k views

Race conditions in django

Here is a simple example of a django view with a potential race condition: # myapp/views.py from django.contrib.auth.models import User from my_libs import calculate_points def add_points(request): ...
9
votes
6answers
939 views

Version track, automate DB schema changes with django

I'm currently looking at the Python framework Django for future db-based web apps as well as for a port of some apps currently written in PHP. One of the nastier issues during my last years was ...
8
votes
3answers
470 views

Handling race condition in model.save()

How should one handle a possible race condition in a model's save() method? For example, the following example implements a model with an ordered list of related items. When creating a new Item the ...
8
votes
5answers
329 views

How to prepare a django project for future changes

As I work on my first django powered site, I am constantly learning new things and making all sorts of changes and additions to my apps as I go. I try to follow DRY and pythonic principles and be ...
7
votes
2answers
1k views

How do I turn MongoDB query into a JSON?

for p in db.collection.find({"test_set":"abc"}): posts.append(p) thejson = json.dumps({'results':posts}) return HttpResponse(thejson, mimetype="application/javascript") In my Django/Python ...
7
votes
2answers
929 views

Best way to store user-uploaded files in a webapp

I'm creating a web application (in Django), which needs to allow users to upload files (specifically images, which are later displayed for other users). I'm trying to understand the best way to store ...
7
votes
5answers
2k views

Django: Increment blog entry view count by one. Is this efficient?

I have the following code in my index view. latest_entry_list = Entry.objects.filter(is_published=True).order_by('-date_published')[:10] for entry in latest_entry_list: entry.views = entry.views ...
6
votes
2answers
100 views

Is there an SQLAlchemy equivalent of django-evolution?

All I want is to have a workflow somewhat similar to: Add django_evolution to the INSTALLED_APPS for your project Run ./manage.py syncdb Make modifications to the model files in your project Run ...
6
votes
5answers
284 views

Finding a Python Library to Mock a Database

I am about to finish a university project that involves Python, and my team has a test case shortage. We need more, and specifically, we need some test cases for the database. This is where mocking ...
6
votes
2answers
2k views

django related_name for field clashes

I am getting a field clash in my models: class Visit(models.Model): user = models.ForeignKey(User) visitor = models.ForeignKey(User) Error: One or more models did not validate: ...
6
votes
5answers
6k views

Data Structure for storing a sorting field to efficiently allow modifications

I'm using Django and PostgreSQL, but I'm not absolutely tied to the Django ORM if there's a better way to do this with raw SQL or database specific operations. I've got a model that needs sequential ...
6
votes
2answers
2k views

Django users and authentication from external source

I have a Django app that gets it's data completely from an external source (queried via HTTP). That is, I don't have the option for a local database. Session data is stored in the cache (on my ...
5
votes
3answers
105 views

Is it a good programming practice to separate models from the rest of the application

My project consists of several django applications that need to be deployed differently, possibly on different machines. However often these apps occasionally need to access each other's models, so I ...
5
votes
4answers
172 views

Are there any good options for baking out a Django site as static files?

Say you have an existing database-backed Django site. Something simple, like single model containing a record for every minor league baseball team. The model is accessed by one view that lists all the ...
5
votes
3answers
248 views

How do I use a dictionary to update fields in Django models?

Suppose I have a model like this: class Book(models.Model): num_pages = ... author = ... date = ... Can I create a dictionary, and then insert or update the model using it? d = ...
5
votes
1answer
251 views

How does commit_on_success handle being nested?

I'm a bit confused about how I should handle transactions in a particular situation. I've got some code that boils down to this: from django.db import transaction @transaction.commit_on_success def ...
5
votes
4answers
346 views

Django Deployment: Handling data in database

Right now I am using git for Django deployment which seems satisfying to me. My only problem is still how to handle the data in the database properly. Eg. I need often to edit data coming from the ...
5
votes
3answers
338 views

What is a way to handle database connection failure in Django 1.2?

What is a way to handle database unavailability and redirect queries from unavailable slave to another one in Django 1.2? Btw, i found out, that it was discussed: ...
5
votes
5answers
429 views

Using email instead of login name in django

Firstly, this is not the question how to authenticate on email/password pair, but rather how to produce logical, and if you like, beautiful data structure. I want to use emails as user names in a ...
5
votes
5answers
974 views

Is a varchar 2 more efficient than a varchar 255?

I'm using Django and setting my CharField(max_length=255), even though I only intend to use about 5 characters. Is this less efficient? I've read that it doesn't really matter with varchar but then ...
5
votes
2answers
554 views

Is there a way to automatically generate a list of columns that need indexing?

The beauty of ORM lulled me into a soporific sleep. I've got an existing Django app with a lack of database indexes. Is there a way to automatically generate a list of columns that need indexing? I ...
4
votes
1answer
99 views

How to specify schema name while running “syncdb” in django?

Assuming I have a schema with the name "my_schema", how can I create tables with "django syncdb" for that particular schema? Or is there any other alternatives for quickly creating tables from my ...
4
votes
3answers
95 views

approximate search in a database

I have a large database with a list of institutions (universities, hospitals, etc). The names of institutions come from different sources and can be spelled differently for the same institution. They ...
4
votes
2answers
173 views

How to copy database in use to other database in django?

I have developed a simple django application using sqlite3. At first, I wanted to keep it simple using sqlite3 but, things are beginning to scale up (Yes, I actually started using that application ...
4
votes
1answer
155 views

Django: how to do get_or_create() in a threadsafe way?

In my Django app very often I need to do something similar to get_or_create(). E.g., User submits a tag. Need to see if that tag already is in the database. If not, create a new record for it. ...
4
votes
1answer
139 views

Django models and legacy class integration

If I have existing classes (generated off some UML model) from legacy code, what is the best way to integrate them with the Django model classes? I have so far considered using the Django custom ...
4
votes
1answer
455 views

Do I need to add a db_index to this Django model?

class Comments(models.Model): content = models.ForeignKey(Content) Do I need to add a db_index to "content"? Or would that automatically be indexed because it's a foreign key?
4
votes
4answers
350 views

how to create a Django models that doesn't map to a database table

I want to create a model that doesn't map to a database table. Instead, stays in memory as a python object. Actually, this model is supposed to represents normalised data from many other ...
4
votes
2answers
292 views

Is it okay that database credentials are stored in plain text?

By default, the Django database host/user/password are stored in the project settings.py file in plain text. I can't seem to think of a better way at the moment, but this seems to be against best ...
4
votes
2answers
392 views

In Django, how do I select 100 random records from the database?

myqueryset = Content.objects.filter(random 100)
4
votes
2answers
327 views

Django - Keeping save() based transactions short

As django model save() methods are not lazy, and as keeping transactions short is a general good practice, should saves be preferably deferred to the end of transaction blocks? As an example, would ...
4
votes
3answers
312 views

Django migrations--is it possible to use South in the middle of the project?

I already started a project, and the models are all synced and everything.
4
votes
4answers
2k views

How to completely dump the data for Django-CMS

I have an instance of Django-CMS already running in a production environment. I would like to dump all the data related to the CMS (PAGES and PLUGINS) so that I may load it back into my development ...
4
votes
2answers
531 views

How to configure database permissions for a Django app?

I'm looking for links, or an answer here, on to how to properly configure the database permissions to secure a Django app? To be clear, I'm looking specifically for material dealing with grants on ...
4
votes
2answers
236 views

django - what's the best/recommended way to translate db values?

I'm trying to figure out the best way to translate actual database values (strings, not date formats or anything complicated) when i18n-ing my application. The most logical thing I could come up with ...
4
votes
3answers
610 views

Django-like abstract database API for non-Django projects

I love the abstract database API that comes with Django, I was wondering if I could use this (or something similar) to model, access, and manage my (postgres) database for my non-Django Python ...
4
votes
4answers
1k views

Hierarchical Data Models: Adjacency List vs. Nested Sets

I have a product catalog. Each category consists of different number (in deep) of subcategories. The number of levels (deep) is unknown, but I quite sure that it will not be exceed of 5,6 levels. The ...

1 2 3 4 5 11