valkey-py icon indicating copy to clipboard operation
valkey-py copied to clipboard

Broken links in tfcall/tfunction help

Open sixela opened this issue 1 week ago • 1 comments

>>> help(valkey.Valkey.tfcall)
Help on function tfcall in module valkey.commands.core:

tfcall(
    self,
    lib_name: str,
    func_name: str,
    keys: Union[bytes, str, memoryview, Iterable[Union[bytes, str, memoryview]]] = None,
    *args: List
) -> Union[Awaitable[Any], Any]
    Invoke a function.

    ``lib_name`` - the library name contains the function.
    ``func_name`` - the function name to run.
    ``keys`` - the keys that will be touched by the function.
    ``args`` - Additional argument to pass to the function.

    For more information see https://valkey.io/commands/tfcall/

But https://valkey.io/commands/tfcall/ is a http/404 page

Same goes for the following ones:

  • tfcall_async
  • tfunction_delete
  • tfunction_list
  • tfunction_load

sixela avatar Dec 02 '25 10:12 sixela