php editor Youzi will introduce you to the size reduction problems and solutions that may be encountered when using the LevelDB database in Go. LevelDB is a high-performance key-value database, but when processing large amounts of data, the size of the database may grow rapidly and occupy a large amount of storage space. The article will discuss in detail how to solve this problem by using the levigo library and using compression algorithms to reduce the size of the database, thereby improving performance and saving storage space. Whether you are a beginner or an experienced developer, this article will help you.
Question content
Hello Stack Overflow community,
I am currently developing a Go program that utilizes LevelDB for data storage using the levigo package. My goal is to manage the database size efficiently, specifically deleting old records when available storage is low. However, I observed an unexpected behavior: the LevelDB database folder size did not decrease proportionally after deleting records.
Here is a simplified version of the code that reproduces the problem:
Save data code:
package main import ( "crypto/rand" "fmt" "log" "github.com/jmhodges/levigo" ) func main() { // Specify the LevelDB options options := levigo.NewOptions() cache := levigo.NewLRUCache(5 << 20) options.SetCache(cache) options.SetCreateIfMissing(true) options.SetMaxOpenFiles(100) // Open or create the LevelDB database db, _ := levigo.Open("/tmp/mydatabase", options) defer db.Close() dataSize := 1024 * 1024 * 5 // 5MB randomData := make([]byte, dataSize) rand.Read(randomData) // Enqueue 5 pieces of data for i := 1; i <= 5; i++ { key := []byte(fmt.Sprintf("key%d", i)) // Write the batch to the database if err := db.Put(levigo.NewWriteOptions(), key, randomData); err != nil { log.Fatal(err) } fmt.Printf("Enqueued: %s \n", key) } fmt.Println("Enqueue completed.") }
Delete data code:
package main import ( "fmt" "log" "github.com/jmhodges/levigo" ) func main() { // Specify the LevelDB options options := levigo.NewOptions() cache := levigo.NewLRUCache(5 << 20) options.SetCache(cache) options.SetCreateIfMissing(true) options.SetMaxOpenFiles(100) // Open or create the LevelDB database db, _ := levigo.Open("/tmp/mydatabase", options) defer db.Close() // Dequeue (remove) the 3 pieces of data for i := 1; i <= 3; i++ { key := []byte(fmt.Sprintf("key%d", i)) // Create a WriteOptions for deleting from the database wo := levigo.NewWriteOptions() defer wo.Close() // Delete the key from the database if err := db.Delete(wo, key); err != nil { log.Fatal(err) } fmt.Printf("Dequeued: %s\n", key) } fmt.Println("Dequeue completed.") }
After running the code and saving 5 items, the database folder size is 30MB. Later, when I ran the code to delete 3 items, the folder size was reduced to 26MB. Considering the amount of data removed, I expected the size to be reduced more significantly.
I have set LevelDB options such as cache size and file limits, but it seems I may have missed something during configuration or removal.
question:
- What could cause the LevelDB database folder size not to decrease proportionally after deleting records?
- Are there any other configurations or optimizations I should consider in order to manage the database size more efficiently?
- Is there a specific way in levigo to compact the database to free up unused space?
Any insight or guidance on resolving this issue would be greatly appreciated. Thanks!
Workaround
By reading the question on this level DB repository I realized that I could add this to delete the row at the end of the loop db.CompactRange (levigo.Range{})
So the database will delete unused data and the total size of the database folder will be reduced.
The above is the detailed content of Issues with LevelDB database size reduction in Go (levigo). For more information, please follow other related articles on the PHP Chinese website!

如何更改文件类型为ini随着计算机的普及和应用软件的多样化,我们经常会遇到需要更改文件类型的情况。其中,将文件类型更改为.ini文件是一种常见的操作。本文将介绍如何简单快捷地将文件类型更改为.ini。首先,我们需要明确.ini文件的特点和用途。.ini文件是一种用于存储配置信息的文本文件。它通常以.ini作为扩展名,并包含键值对的形式。通过修改.ini文件中

我正在尝试使用sqlmodel在数据库中插入记录,其中数据如下所示。一个house对象,它有颜色和许多位置。地点也将与许多房屋相关联。输入为:[{"color":"red","locations":[{"type":"country","name":"netherlands"},{"type":"municipality","name":"amsterdam"},

我有一个用例,我们在x-www-form-urlencoded主体中获取嵌套键值,如下所示name=abc&age=12¬es[key1]=value1¬es[key2]=value2我尝试了url.parsequery("name=abc&age=12¬es\[key1\]=value1¬es\[key2\]=value2")但它给出了{"name":"abc","age":12,"notes[key1]":"value1","note

如何在go中编写一个函数,将任何map转换为对象列表(删除键)?例如:funcmaptolist(inputmapmap[any]any)any{varresultlist[]anyfor_,obj:=rangeinputmap{resultlist=append(resultlist,obj)}returnresultlist}funcmain(){mymap:=make(ma

php数组键值对是一种数据结构,由一个键和一个相应的值组成,键是数组元素的标识符,而值是与键相关联的数据。允许我们以键为标识来存储和访问数据,通过使用键值对,可以更方便地操作和管理数组中的元素,使得程序开发更加灵活和高效。

什么是枚举类型?枚举类型(enum)是Java编程语言中的一种特殊数据类型,用于表示一组预定义的常量。枚举类型中的每个常量都代表该类型的一个可能值。如何使用枚举类型设置值?要使用枚举类型设置值,可以使用枚举类型的常量。枚举类型的常量可以通过点运算符(.)访问。例如,如果有一个名为Color的枚举类型,其中包含三个常量:RED、GREEN和BLUE

Python底层技术揭秘:如何实现哈希表哈希表是在计算机领域中十分常见且重要的数据结构,它可以高效地存储和查找大量的键值对。在Python中,我们可以使用字典来使用哈希表,但是很少有人深入了解它的实现细节。本文将揭秘Python中哈希表的底层实现技术,并给出具体的代码示例。哈希表的核心思想是将键通过哈希函数映射到一个固定大小的数组中,而不是简单地按顺序存储。

Redis键值对操作在Java开发中的应用:如何快速存取数据在Java开发中,数据的存取操作是一项非常重要的任务。如何快速、高效地存取数据是开发者所关注的一个重点问题。而Redis作为一种高性能的内存数据库,具备快速读写操作的特点,因此在Java开发中被广泛应用于数据缓存和存储实现。Redis是一个支持键值对存取的内存数据库。它将数据存储在内存中,因此数据的


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version
Useful JavaScript development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version
