Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For example:

    def baz(self, id):
        return SomeModel.get_by_id(id)

    def boo(self, bar):
        # Do something to bar
        bar.put()

    @ndb.transactional()
    def foo(self, id):
        bar = self.baz(id)
        self.boo(bar)

Is an invocation of foo safely transactional? If not, why not?

share|improve this question

1 Answer

I've no idea why you would think calling out to another function would not be transactional. Of course, it will be: the API doesn't know or care where your calls are coming from, it just knows when you enter a transactional lock and when you later leave it.

share|improve this answer
-1 for snark... – Kekito Jan 11 at 1:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.