Tag

Data Persistence

1 views collected around this technical thread.

Test Development Learning Exchange
Test Development Learning Exchange
Mar 21, 2025 · Fundamentals

Understanding Python's pickle Module: Serialization and Deserialization

Python's pickle module provides a simple way to serialize and deserialize complex objects such as lists, dictionaries, and class instances, allowing them to be saved to or loaded from files or byte streams, with examples of pickling, unpickling, using dumps/loads, protocol versions, and security considerations.

Data PersistencePicklePython
0 likes · 4 min read
Understanding Python's pickle Module: Serialization and Deserialization
Java Tech Enthusiast
Java Tech Enthusiast
Sep 10, 2024 · Backend Development

Thread Pool Data Persistence in Java Systems

The article explains how using a database‑backed persistence layer for Java thread‑pool tasks prevents data loss during service downtime by storing tasks before submission, tracking status and retries, and employing idempotent processing with configurable pool sizes and scheduled reprocessing of failed or pending jobs.

Data PersistenceJavaSystem Architecture
0 likes · 7 min read
Thread Pool Data Persistence in Java Systems
Sohu Tech Products
Sohu Tech Products
Feb 22, 2023 · Mobile Development

Flutter Project Setup Guide: Networking, Persistence, Routing, Screen Adaptation, Splash Screen, State Management, and Widget Lifecycle

This article provides a comprehensive step‑by‑step guide for setting up a new Flutter project, covering network request handling with Dio and protobuf, data persistence using shared_preferences, mmkv and ObjectBox, routing with GoRouter, screen adaptation via flutter_screenutil, splash‑screen configuration, state‑management techniques with Provider and GetX, and detailed explanations of widget lifecycle and key usage.

Data PersistenceFlutterMobile Development
0 likes · 24 min read
Flutter Project Setup Guide: Networking, Persistence, Routing, Screen Adaptation, Splash Screen, State Management, and Widget Lifecycle
Rare Earth Juejin Tech Community
Rare Earth Juejin Tech Community
Nov 28, 2022 · Mobile Development

Implementing External Links and Local Data Persistence in SwiftUI using FileManager and CoreData

This chapter demonstrates how to open external web links in the iOS browser using SwiftUI's Link view, and provides a comprehensive guide to local data persistence by employing FileManager with property list files and the CoreData framework for storing, loading, editing, and deleting model data within a SwiftUI app.

CoreDataData PersistenceFileManager
0 likes · 15 min read
Implementing External Links and Local Data Persistence in SwiftUI using FileManager and CoreData
Python Programming Learning Circle
Python Programming Learning Circle
Nov 6, 2021 · Fundamentals

Understanding Python's pickle Module: Functions, Usage, and Examples

This article introduces Python's built-in pickle module, explains its four core functions (dumps, loads, dump, load), details their parameters and usage, and provides code examples for serializing and deserializing objects to memory and files, while noting performance limitations and alternatives such as ZODB.

Data PersistenceExamplePickle
0 likes · 8 min read
Understanding Python's pickle Module: Functions, Usage, and Examples
Practical DevOps Architecture
Practical DevOps Architecture
Jun 10, 2021 · Operations

Understanding Docker Volumes and Host‑Container Data Sharing

This article explains how Docker volumes work, how to mount host directories into containers using the -v and --mount options, and demonstrates data persistence by creating a volume, inspecting its storage location, and verifying that files created inside the container appear on the host.

ContainerData PersistenceDevOps
0 likes · 6 min read
Understanding Docker Volumes and Host‑Container Data Sharing
Efficient Ops
Efficient Ops
May 18, 2021 · Databases

Redis Evolution: From Single Node to High‑Performance Cluster with Persistence and Sharding

This article walks through Redis's architectural journey, covering single‑node basics, data persistence strategies (RDB and AOF), master‑slave replication, automatic failover with Sentinel, consensus algorithms, and both client‑side and server‑side sharding to achieve high performance and high availability.

Data PersistenceDatabaseHigh Availability
0 likes · 19 min read
Redis Evolution: From Single Node to High‑Performance Cluster with Persistence and Sharding
Full-Stack Internet Architecture
Full-Stack Internet Architecture
Nov 29, 2020 · Databases

Understanding Redis Expiration Strategies, RDB, and AOF Implementation

This article explains Redis's cache expiration policies—including timed, periodic, and lazy eviction—details the internal structure and parsing of RDB files, and describes the AOF persistence mechanism with its write‑ahead logging, synchronization options, and rewrite process, providing a comprehensive view of Redis data durability.

AOFData PersistenceDatabase
0 likes · 11 min read
Understanding Redis Expiration Strategies, RDB, and AOF Implementation
58 Tech
58 Tech
Aug 28, 2020 · Backend Development

Design and Implementation of a Cloud‑Based Shared Proxy Tool for Team Collaboration

This article presents a cloud‑based shared proxy solution that addresses common pain points of local proxy tools by enabling multi‑user configuration sharing, isolation, mock & host management, data persistence, analysis, and monitoring, thereby improving development and testing efficiency for teams.

Data PersistenceNetwork Monitoringbackend development
0 likes · 19 min read
Design and Implementation of a Cloud‑Based Shared Proxy Tool for Team Collaboration
Efficient Ops
Efficient Ops
Sep 4, 2019 · Operations

Master Docker Data Persistence: Volumes, Bind Mounts, and Tmpfs Explained

This article explains why storing data in a container layer is problematic and details Docker's three persistent storage options—volumes, bind mounts, and tmpfs—along with their usage commands, scenarios, and advanced features such as bind propagation, SELinux labels, and volume drivers.

Bind MountContainer StorageData Persistence
0 likes · 13 min read
Master Docker Data Persistence: Volumes, Bind Mounts, and Tmpfs Explained
Architects' Tech Alliance
Architects' Tech Alliance
Sep 1, 2018 · Cloud Native

Container Cloud Platform Storage: Methods, Importance, and Practical Considerations

The article explains the various storage methods for container cloud platforms, highlights why storage is critical for data safety and business continuity, and outlines key factors such as persistent data needs, performance, scalability, and product selection for cloud‑native environments.

Cloud NativeContainerData Persistence
0 likes · 13 min read
Container Cloud Platform Storage: Methods, Importance, and Practical Considerations
360 Zhihui Cloud Developer
360 Zhihui Cloud Developer
Oct 12, 2017 · Fundamentals

Understanding Linux Writeback: How Data Moves from Memory to Disk

This article explains the Linux kernel writeback path, detailing how data travels from user space through page cache, kernel buffers, and the disk controller, and shows how to tune dirty page thresholds and writeback threads for optimal performance.

Data PersistenceKernelLinux
0 likes · 11 min read
Understanding Linux Writeback: How Data Moves from Memory to Disk