| | 2215 | Be aware that the ``update()`` method is converted directly to an SQL |
|---|
| | 2216 | statement. It is a bulk operation for direct updates. It doesn't run any |
|---|
| | 2217 | ``save()`` methods on your models, or emit the ``pre_save`` or ``post_save`` |
|---|
| | 2218 | signals (which are a consequence of calling ``save()``). If you want to save |
|---|
| | 2219 | every item in a ``QuerySet`` and make sure that the ``save()`` method is |
|---|
| | 2220 | called on each instance, you don't need any special function to handle that. |
|---|
| | 2221 | Just loop over them and call ``save()``: |
|---|
| | 2222 | |
|---|
| | 2223 | for item in my_queryset: |
|---|
| | 2224 | item.save() |
|---|
| | 2225 | |
|---|
| | 2226 | |
|---|