Redis

关注公众号 jb51net

关闭
首页 > 数据库 > Redis > Redis底层类型json

Redis底层类型之json命令使用

作者:werbenhu

这篇文章主要为大家介绍了Redis底层类型之json命令使用详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪

关于redisjson

The JSON capability of Redis Stack provides JavaScript Object Notation (JSON) support for Redis. 可以看到redis json是输入RedisStack的一部分。

那么RedisStack又是什么呢?

Redis Stack is the best starting point for working with Redis. We've bundled together the best of the technology that we have to offer into an easy-to-use package. Redis Stack extends the core features of Redis OSS and provides a complete developer experience for debugging and more.

RedisStack 是使用 Redis 的最佳起点。我们已经把我们必须提供的最好的技术捆绑在一起,形成一个易于使用的软件包。Redis Stack 扩展了 Redis OSS 的核心特性,并为调试等提供了完整的开发人员体验。

Redis Stack 将以下功能捆绑到 Redis 中:JSON、搜索和查询、时间序列和概率性。

Redis Stack packaging
There are two distinct Redis Stack packages to choose from:

有两种不同的 Redis Stack 包可供选择:

Redis Stack Server: This package contains Redis OSS and module extensions only. It does not contain RedisInsight, the developer desktop application. This package is best for production deployment and is intended to be a drop-in replacement (for example, if you're already deploying Redis OSS as a cache). You can still download RedisInsight separately.

Redis Stack Server:该包仅包含 Redis OSS 和模块扩展。它不包含 RedisInsight 开发人员桌面应用程序。这个包最适合生产部署,并旨在作为替代品(例如,如果您已经将 Redis OSS 部署为缓存)。您仍然可以单独下载 RedisInsight。

Redis Stack: This package contains everything a developer needs in a single bundle. This includes Redis Stack Server (Redis OSS and module extensions) along with the RedisInsight desktop application (or part of the docker container). If you want to create an application locally and explore how it interacts with Redis, this is the package for you.

Redis Stack:这个包包含开发人员在一个单独的捆绑包中所需的一切。这包括 Redis Stack Server(Redis OSS 和模块扩展)以及 RedisInsight 桌面应用程序(或 Docker 容器的一部分)。如果您想在本地创建一个应用程序并探索它与 Redis 的交互方式,这个包适合您。

如何安装redis-statck

version: "3.7"
services:
    redis:
      image: redis/redis-stack-server:latest
      container_name: redisstack
      hostname: redisstack
      restart: always
      ports:
        - "16379:6379"
      volumes:
        # - ./conf/redis.conf:/usr/local/etc/redis/redis.conf
        - ./data:/data
        - ./logs:/logs
      command:
        redis-stack-server --requirepass aimore@123456
      networks:
        - default
networks:
  default:
    external:
      name: aimore

命令

JSON.SET key path value [NX | XX]
JSON.SET doc $ '{"a":2}'
JSON.SET doc $.a '3'

JSET.SET returns a simple string reply: OK if executed correctly or nil if the specified NX or XX conditions were not met.

JSON.GET key [INDENT indent] [NEWLINE newline] [SPACE space] [path
  [path ...]]

Return the value at path in JSON serialized form

JSON.DEL key [path]

以上就是Redis底层类型之json命令使用的详细内容,更多关于Redis底层类型json的资料请关注脚本之家其它相关文章!

您可能感兴趣的文章:
阅读全文