1

Does Django signals work on google app engine ? I am using django-nonrel. Thanks

SRC
  • 590
  • 6
  • 22

2 Answers2

0

Works fine. Signals do not use the db.

MattoTodd
  • 14,467
  • 16
  • 59
  • 76
  • Thanks MattoTodd for the prompt reply..Actually this question was in relation with the question http://stackoverflow.com/questions/5055608/django-signals-on-gae-with-django-nonrel. I wish if you can guide me on this. – SRC Feb 22 '11 at 16:45
  • 1
    @SRC - If MattoTodd answered this question for you, would you mind marking it as the answer? Thanks! – apiguy Feb 22 '11 at 19:11
  • @free-dom:Yes,sure.Thanks a lot guys!! – SRC Feb 23 '11 at 04:11
0

Does Django signals work on google app engine ?

Yes, as long as you save those models use the Model.save()

lprsd
  • 84,407
  • 47
  • 135
  • 168