@@ -312,7 +312,8 @@ def list_instruments(self, *, cache=True):
312312 -------
313313 instrument_list : list of strings
314314 cache : bool
315- Cache the response for faster subsequent retrieval
315+ Defaults to True. If set overrides global caching behavior.
316+ See :ref:`caching documentation <astroquery_cache>`.
316317
317318 """
318319 if self ._instrument_list is None :
@@ -335,7 +336,8 @@ def list_surveys(self, *, cache=True):
335336 -------
336337 survey_list : list of strings
337338 cache : bool
338- Cache the response for faster subsequent retrieval
339+ Defaults to True. If set overrides global caching behavior.
340+ See :ref:`caching documentation <astroquery_cache>`.
339341 """
340342 if self ._survey_list is None :
341343 survey_list_response = self ._request (
@@ -372,7 +374,8 @@ def query_surveys(self, *, surveys='', cache=True,
372374 specified as a string, should be a comma-separated list of
373375 survey names.
374376 cache : bool
375- Cache the response for faster subsequent retrieval
377+ Defaults to True. If set overrides global caching behavior.
378+ See :ref:`caching documentation <astroquery_cache>`.
376379
377380 Returns
378381 -------
@@ -436,7 +439,8 @@ def query_main(self, *, column_filters={}, columns=[],
436439 ``column_filters`` and ``columns`` for the requested
437440 ``instrument``.
438441 cache : bool
439- Cache the response for faster subsequent retrieval.
442+ Defaults to True. If set overrides global caching behavior.
443+ See :ref:`caching documentation <astroquery_cache>`.
440444
441445 Returns
442446 -------
@@ -473,7 +477,8 @@ def query_instrument(self, instrument, *, column_filters={}, columns=[],
473477 ``column_filters`` and ``columns`` for the requested
474478 ``instrument``.
475479 cache : bool
476- Cache the response for faster subsequent retrieval.
480+ Defaults to True. If set overrides global caching behavior.
481+ See :ref:`caching documentation <astroquery_cache>`.
477482
478483 Returns
479484 -------
@@ -549,6 +554,9 @@ def get_headers(self, product_ids, *, cache=True):
549554 ----------
550555 product_ids : either a list of strings or a `~astropy.table.Column`
551556 List of data product IDs.
557+ cache : bool
558+ Defaults to True. If set overrides global caching behavior.
559+ See :ref:`caching documentation <astroquery_cache>`.
552560
553561 Returns
554562 -------
0 commit comments