1

These are the models involved in the view :

class Movie(models.Model):
    title_original = models.CharField(max_length=300,
                                      db_column='titulooriginal')
    title_translated = models.CharField(max_length=300, blank=True,
                                       db_column='titulotraducido')
    thumbnail = models.CharField(max_length=300, blank=True,
                                 db_column='imagen')
    length = models.CharField(max_length=75, db_column='duracion')
    rating = models.CharField(max_length=75, db_column='censura')
    genre = models.CharField(max_length=75, db_column='genero')
    country_of_origin = models.CharField(max_length=150, db_column='pais')
    trailer = models.CharField(max_length=300, blank=True, db_column='trailer')
    synopsis = models.CharField(max_length=3600, blank=True,
                                db_column='sinopsis')
    cast = models.CharField(max_length=300, blank=True, db_column='elenco')
    director = models.CharField(max_length=150, db_column='director')
    slug = models.SlugField(unique=True, blank=True)
    tsc = models.DateTimeField(auto_now=False, auto_now_add=True, db_column='tsc', null=True)
    tsm = models.DateTimeField(auto_now=True, auto_now_add=True, db_column='tsm', null=True)

    class Meta:
        db_table = u'peliculas'

    def __unicode__(self):
        return self.title_original


class ShowTime(models.Model):
    LANGUAGE_ESPANOL = 'Espanol'
    LANGUAGE_SUBTITLED = 'Subtitulada'
    LANGUAGE_CHOICES = (
        (LANGUAGE_ESPANOL, LANGUAGE_ESPANOL),
        (LANGUAGE_SUBTITLED, LANGUAGE_SUBTITLED))

    movie = models.ForeignKey(Movie, db_column='idpelicula')
    theater = models.ForeignKey(Theater, db_column='idcine',
                                      null=True)
    time = models.TimeField(null=True, db_column='hora')
    type_3d = models.NullBooleanField(db_column=u'3d')
    type_xd = models.NullBooleanField(null=True, db_column='xd')
    type_gtmax = models.NullBooleanField(null=True, db_column='gtmax')
    type_vip = models.NullBooleanField(null=True, db_column='vip')
    type_imax = models.NullBooleanField(null=True, db_column='imax')
    language = models.CharField(max_length=33, blank=True, db_column='idioma',
                                choices=LANGUAGE_CHOICES,
                                default=LANGUAGE_ESPANOL)
    city = models.ForeignKey(City, db_column='idciudad')
    start_date = models.DateField(blank=True, db_column='fecha_inicio')
    end_date = models.DateField(blank=True, db_column='fecha_fin')
    visible = models.NullBooleanField(null=True, db_column='visible')
    tsc = models.DateTimeField(auto_now=False, auto_now_add=True, db_column='tsc', null=True)
    tsm = models.DateTimeField(auto_now=True, auto_now_add=True, db_column='tsm', null=True)

    class Meta:
        db_table = u'funciones'

    def __unicode__(self):
        return (unicode(self.theater) + " " + unicode(self.movie.title_original) + " " +         unicode(self.time))

Additionally this is the view that queries the models:

def list_movies(request, time_period):
    city = utils.get_city_from_request(request)

    if time_period == 'proximas-dos-horas':
        (start_date,
         end_date,
         hours_start,
         hours_end) = utils.get_datetime_filters_from_time_period(time_period)
    else:
        (start_date,
         end_date) = utils.get_datetime_filters_from_time_period(time_period)

    if not start_date:  # 404 for invalid time periods
        raise Http404

    movies = Movie.objects.filter(
        showtime__city=city.code,
        showtime__visible=1,
        ).order_by('-tsm').distinct()

    if time_period == 'proximas-dos-horas':
        movies = movies.filter(
            showtime__start_date__lte=start_date,
            showtime__end_date__gte=end_date,
            showtime__time__range=(hours_start, hours_end))

    elif time_period == 'proximos-estrenos':
        movies = movies.filter(
            showtime__start_date=None,
            showtime__end_date=None,
            )

    else:
        movies = movies.filter(
            showtime__start_date__lte=start_date,
            showtime__end_date__gte=end_date)

    context = {'movies': movies, 'city': city, 'time_period': time_period}
    return render_to_response('list_movies.html', context,
                              context_instance=RequestContext(request))

Currently this view is consuming a lot of resources in the database and this results in low response time of the web transaction on the browser. I connected the app with New Relic monitoring software to analyze the transactions on app and DB level. This is the trace detail that i got:

enter image description here

I would like to get somo advice on optimizing this view so that the consumption of DB resources drops to the minimum

Thanks a lot!

4

1 回答 1

0

我不知道您的问题的背景,但我的 2 条建议是:

首先,考虑数据模型的一些变化。该类ShowTime有一个外键City和一个外键,Theater看起来有点多余。就个人而言,我更喜欢去规范化地址,例如:

class Theater(models.Model):
    name = models.CharField(max_length=48)
    # Location fields.
    geo_country = models.CharField(max_length=48)
    geo_country_code = models.CharField(max_length=2)
    geo_locality = models.CharField(max_length=48)
    geo_street = models.CharField(max_length=48, blank=True, default="")
    geo_address = models.CharField(max_length=120, blank=True, default="")


class ShowTime(models.Model):
    theater = models.ForeignKey(Theater) 

这样,您可以将 JOIN 保存到City表中,并且可以从数据模型中删除它。

其次,阅读 Django ORM 的select_related 特性

祝你玩得开心。

于 2013-06-26T02:05:50.867 回答