Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to optimize the massive data of Redis Set

2025-01-28 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/01 Report--

This article introduces the relevant knowledge of "how to optimize the massive data of Redis Set". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!

Project data business architecture diagram

In order to realize the function of removing weight [counting the number of ships in grid time], the redis Set structure is adopted. The data is valid for 2 days. Due to the huge amount of data, redis down is dropped in the test environment.

First, flushdb is used to clear the data.

The storage code is as follows: convert ship MMSI to String- > byte []

So that each MMSI [9 bits] takes up 9 bytes of memory.

Optimize the data structure:

It only takes 4 bytes to convert Integer to byte [].

So now for 200 million redisKey, it will save at least the memory size as follows:

200 million * (9-4) = 1 billion bytes

It will save at least nearly 1G of memory. If an average of 10 MMSI is stored in a KEY, it saves nearly 10 gigabytes of memory.

This is the end of the content of "how to optimize Redis Set massive data". Thank you for your reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report