Package

io.scalajs.npm

redis

Permalink

package redis

redis package object

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. redis
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class AbortError extends RedisError

    Permalink

    AbortError subclass of RedisError: All commands that could not finish due to what ever reason

    AbortError subclass of RedisError: All commands that could not finish due to what ever reason

    Annotations
    @RawJSType() @native() @JSImport( "redis" , "AbortError" )
  2. class AggregateError extends AbortError

    Permalink

    AggregateError subclass of AbortError: Emitted in case multiple unresolved commands without callback got rejected in debug_mode instead of lots of AbortErrors.

    AggregateError subclass of AbortError: Emitted in case multiple unresolved commands without callback got rejected in debug_mode instead of lots of AbortErrors.

    Annotations
    @RawJSType() @native() @JSImport( "redis" , "AggregateError" )
  3. class ParserError extends RedisError

    Permalink

    ParserError subclass of RedisError: Returned in case of a parser error (this should not happen)

    ParserError subclass of RedisError: Returned in case of a parser error (this should not happen)

    Annotations
    @RawJSType() @native() @JSImport( "redis" , "ParserError" )
  4. trait Redis extends Object

    Permalink

    redis - This is a complete and feature rich Redis client for node.js.

    redis - This is a complete and feature rich Redis client for node.js.

    Annotations
    @RawJSType() @native()
  5. type RedisCallback[T] = Function2[RedisError, T, Any]

    Permalink
  6. type RedisChannel = String

    Permalink
  7. trait RedisClient extends Object with IEventEmitter

    Permalink

    Redis Client

    Redis Client

    Annotations
    @RawJSType() @native()
  8. class RedisClientOptions extends Object

    Permalink

    Redis Connection Options

    Redis Connection Options

    Annotations
    @RawJSType() @ScalaJSDefined()
  9. type RedisCommand = Any

    Permalink
  10. type RedisCount = Int

    Permalink
  11. class RedisError extends Error

    Permalink

    RedisError: All errors returned by the client

    RedisError: All errors returned by the client

    Annotations
    @RawJSType() @native() @JSImport( "redis" , "RedisError" )
  12. type RedisMessage = String

    Permalink
  13. trait RedisMulti extends Object

    Permalink

    MULTI commands are queued up until an EXEC is issued, and then all commands are run atomically by Redis.

    MULTI commands are queued up until an EXEC is issued, and then all commands are run atomically by Redis. The interface in node_redis is to return an individual Multi object by calling client.multi(). If any command fails to queue, all commands are rolled back and none is going to be executed (For further information look at transactions).

    Annotations
    @RawJSType() @native()
  14. type RedisResponse = Object

    Permalink
  15. type RedisTLS = Object

    Permalink
  16. type RedisTime = String

    Permalink
  17. class ReplyError extends RedisError

    Permalink

    ReplyError subclass of RedisError: All errors returned by Redis itself

    ReplyError subclass of RedisError: All errors returned by Redis itself

    Annotations
    @RawJSType() @native() @JSImport( "redis" , "ReplyError" )

Value Members

  1. object Redis extends Object with Redis

    Permalink

    Redis Singleton

    Redis Singleton

    Annotations
    @native() @JSImport( "redis" , JSImport.Namespace )
  2. object RedisClient

    Permalink

    Redis Client Companion

Inherited from AnyRef

Inherited from Any

Ungrouped