docs: minor tweaks to cached group example

This commit is contained in:
Ilan Steemers
2015-10-07 13:55:13 +02:00
parent 76cd10d5f8
commit bd242b9de3
2 changed files with 7 additions and 5 deletions
+4 -4
View File
@@ -296,7 +296,7 @@ Alternatively the ``parzen_async()`` function can also be written with :func:`as
# create 100 calculations and return the collated result
def parzen_async():
mu_vec = numpy.array([0, 0])
mu_vec = numpy.array([0, 0])n this case, but without hook support.
cov_mat = numpy.array([[1, 0], [0, 1]])
sample = numpy.random. \
multivariate_normal(mu_vec, cov_mat, 10000)
@@ -304,9 +304,9 @@ Alternatively the ``parzen_async()`` function can also be written with :func:`as
x = numpy.array([[0], [0]])
# async them with async iterable
args = [(sample, x, w) for w in widths]
result_id = async_iter(parzen_estimation, args)
# return the result or timeout after 10 seconds
return result(result_id, wait=10000)
result_id = async_iter(parzen_estimation, args, cached=True)
# return the cached result or timeout after 10 seconds
return result(result_id, wait=10000, cached=True)
.. note::
+3 -1
View File
@@ -205,6 +205,8 @@ This works both globally or on individual async executions.::
# and then save it to the database
task.save()
As you can see you can easily turn a cached result into a permanent database result by calling ``save()`` on it.
This also works for group actions::
# cached group example
@@ -225,7 +227,7 @@ This also works for group actions::
# wait max 50ms for one hundred results to return
result_group('frexp', wait=50, count=100, cached=True)
Note that exact same result can be achieved by using the more convenient :func:`async_iter` in this case, but without hook support.
If you don't need hooks, that exact same result can be achieved by using the more convenient :func:`async_iter`.
Synchronous testing
-------------------