--- Title: Redis Cloud changelog (July 2024) aliases: - /operate/rc/changelog/july-2024/ alwaysopen: false categories: - docs - operate - rc description: New features, enhancements, and other changes added to Redis Cloud during July 2024. highlights: Redis 7.4 Preview linktitle: July 2024 tags: - changelog weight: 46 --- ## New Features ### Query performance factor preview When you create a Pro database with [Search and query]({{< relref "/operate/oss_and_stack/stack-with-enterprise/search" >}}) capabilities, you can now choose to boost your query capabilities with the Query performance factor. The query performance factor adds dedicated power specifically for Search and query. For more information, see [Search and query sizing]({{< relref "/operate/rc/databases/configuration/advanced-capabilities#search-and-query-sizing" >}}). You can take advantage of extra query speed for free during the preview period. The query performance factor is available for Redis Cloud Pro databases on Redis 7.2 and later. ### Redis 7.4 Preview A preview of Redis 7.4 is now available on [Redis Cloud Essentials databases]({{< relref "/operate/rc/databases/create-database/create-essentials-database" >}}) in select regions on Amazon Web Services and Google Cloud. Redis 7.4 offers hash field expiration and other feature set improvements. For more information on the changes in Redis 7.4, see the [Redis 7.4 release blog post](https://redis.io/blog/announcing-redis-community-edition-and-redis-stack-74). #### Redis database version 7.4 breaking changes {#redis-74-breaking-changes} When new versions of Redis Community Edition change existing commands, upgrading your database to a new version can potentially break some functionality. Before you upgrade, read the provided list of breaking changes that affect Redis Software and update any applications that connect to your database to handle these changes. Confirm your Redis database version (`redis_version`) using the Cluster Manager UI or run the following [`INFO`]({{< relref "/commands/info" >}}) command with [`redis-cli`]({{< relref "/operate/rs/references/cli-utilities/redis-cli" >}}): ```sh $ redis-cli -p INFO "# Server redis_version:7.0.8 ..." ``` ##### Security behavior changes - [#13108](https://github.com/redis/redis/pull/13108) Lua: LRU eviction for scripts generated with `EVAL`. ##### Other general behavior changes - [#13133](https://github.com/redis/redis/pull/13133) Lua: allocate VM code with jemalloc instead of libc and count it as used memory. - [#12171](https://github.com/redis/redis/pull/12171) `ACL LOAD`: do not disconnect all clients.