On Tue, 2008-10-14 at 07:33 -0700, dbee wrote: > I'm upgrading my .97 app to 1.0 and I'm trying to figure out > transactions and caching ... > > In my app at present I have ... > > def event_editor(request): > > ................. > > return > > # Defeat caching for the event_editor > function event_editor = cache_control(no_cache=True)(event_editor) > > # The transacton autocommit for event_editor > event_editor = transaction.autocommit(event_editor) > > I'm reading the 1.0 docs and it seems to suggest that I use something > like this instead ... > > @transaction.autocommit > def event_editor(request):
The two forms are identical. The "@..." syntax (decorator syntax) is just syntactic sugar for the first construction. It was only introduced in Python 2.4. Some people prefer using decorators in their code (putting the function modifiers up front), others prefer putting the modifiers at the end (or have a requirement to work with Python 2.3 so don't have the decorator syntax available). It's entirely your choice. Regards, Malcolm --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---