Saturday, February 26, 2011

Re: static list in __init__

CrabbyPete <pete.douma@gmail.com> writes:

> I have an application that initializes a larges static array in its
> __init__ I want to be able to access it from my views.py
> functions. What is the best way to do this? I know I can put it in
> memcache, or a database but it seems like an unnecessary over head.
>
> eg.
>
> __init__.py
>
> biglist = initialize()
>
> views.py
>
> def dosomething():
> for value in biglist:
> .....

Probably you can just do

from project.app import biglist

near the top of views.py.

Dan

--
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+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

No comments:

Post a Comment