mirror of
https://github.com/wassname/ray.git
synced 2026-07-10 12:06:43 +08:00
Removed obsolete "detached=True" for detached actor in documentation. (#9158)
* Added small section on installation when using Anaconda. Also fixed an obsolete link to Anaconda. * Delete more temporary directories when running the doc "make clean". * Fixed typo in LinearDiscreteEnv docs * Removed the "detached=True" from the description of detachted actors, because it is now deprecated. Co-authored-by: Dean Wampler <dean@concurrentthought.com>
This commit is contained in:
@@ -243,9 +243,9 @@ Detached Actors
|
||||
When original actor handles goes out of scope or the driver that originally
|
||||
created the actor exits, ray will clean up the actor by default. If you want
|
||||
to make sure the actor is kept alive, you can use
|
||||
``_remote(name="some_name", detached=True)`` to keep the actor alive after
|
||||
the driver exits. The actor will have a globally unique name and can be
|
||||
accessed across different drivers.
|
||||
``_remote(name="some_name")`` to keep the actor alive after
|
||||
the driver exits. The actor will have a globally unique name and can be
|
||||
accessed across different drivers.
|
||||
|
||||
For example, you can instantiate and register a persistent actor as follows:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user