> Is there anyway I can make g persistent? In other words, I want to
> build it once, and then search that copy for each additional request.
>

If this thing doesn't change, then you could build it once and then  
stick it in a module-level variable. Something like:

final_graph = None

def graph_search(request):
   if not final_graph:
     final_graph = build_graph()
   result = search_graph(final_graph, some_parameters_from_request)
   return render_to_response('template.html',{'result': result})

Note that this is a *very* naive implementation - you'll need some  
locking around final_graph access to prevent race conditions. You  
might want to consider using a thread-local storage. You'll also need  
to unset this module-level variable (again with locking) if your  
underlying graph data changes.

Cheers,
Dan

--
Dan Fairs <[EMAIL PROTECTED]> | http://www.stereoplex.com/


--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to