Updates the entire index. If ``using`` is provided, it specifies which connection should be used. Default relies on the routers to decide which backend should be used.
(self, using=None)
| 294 | return connections[using].get_backend() |
| 295 | |
| 296 | def update(self, using=None): |
| 297 | """ |
| 298 | Updates the entire index. |
| 299 | |
| 300 | If ``using`` is provided, it specifies which connection should be |
| 301 | used. Default relies on the routers to decide which backend should |
| 302 | be used. |
| 303 | """ |
| 304 | |
| 305 | backend = self.get_backend(using) |
| 306 | |
| 307 | if backend is not None: |
| 308 | backend.update(self, self.index_queryset(using=using)) |
| 309 | |
| 310 | def update_object(self, instance, using=None, **kwargs): |
| 311 | """ |
no test coverage detected