All Articles

140474 articles · Page 6960 of 7024
Art of Distributed System Architecture Design
Art of Distributed System Architecture Design
Jul 29, 2015 · Frontend Development

An Overview of Backbone.js: Architecture, Core Components, and Practical Use Cases

This article provides a comprehensive introduction to Backbone.js, describing its lightweight MVC architecture, core components such as Models, Collections, Views, Events, Sync, Router, and History, and discusses its advantages, suitable scenarios, comparisons with other frameworks, and a real‑world implementation in the Wandoujia PC client.

Backbone.jsJavaScriptMVC
0 likes · 15 min read
An Overview of Backbone.js: Architecture, Core Components, and Practical Use Cases
Architect
Architect
Jul 29, 2015 · Databases

Google App Engine Datastore: Usage, Architecture, and Implementation

This article explains how Google App Engine Datastore works from a programmer's perspective, covering its entity‑based data model, hierarchical structure, query capabilities, comparison with relational databases, and the underlying implementation built on BigTable including entities, indexes, transactions, and backup mechanisms.

BigtableDataStoreDatabase Architecture
0 likes · 10 min read
Google App Engine Datastore: Usage, Architecture, and Implementation
Efficient Ops
Efficient Ops
Jul 29, 2015 · Cloud Computing

Why SDN Is Revolutionizing Public Cloud Networks – Insights and Real-World Cases

This article explores how Software‑Defined Networking (SDN) has moved from theory to large‑scale deployment in public‑cloud environments, detailing overlay technologies like VXLAN, integration with NFV, practical migration challenges, and real‑world use cases—including automated path probing and controller‑based solutions—while also highlighting a company’s own SDN products.

Cloud ComputingNFVNetwork Virtualization
0 likes · 11 min read
Why SDN Is Revolutionizing Public Cloud Networks – Insights and Real-World Cases
Qunar Tech Salon
Qunar Tech Salon
Jul 28, 2015 · Fundamentals

Introduction to xargs with Basic and Advanced Usage Examples

This article explains the purpose of the Unix xargs command, demonstrates basic usage for concatenating log files, shows an advanced example for renaming text files to log files using the -I placeholder, and provides a step‑by‑step breakdown of how the command pipeline works.

Batch ProcessingScriptingShell
0 likes · 3 min read
Introduction to xargs with Basic and Advanced Usage Examples
Efficient Ops
Efficient Ops
Jul 28, 2015 · Operations

How Tencent’s BlueKing Automates Fault Recovery and Zero‑Touch Game Server Launch

This article explains how Tencent Game's BlueKing platform redesigns operations by building open‑source PaaS capabilities, automating fault self‑healing, enabling fully automated game server region launches, supporting self‑service change releases, leveraging big‑data for real‑time decisions, and moving toward open‑source and hybrid‑cloud solutions.

AutomationBig Datafault-recovery
0 likes · 19 min read
How Tencent’s BlueKing Automates Fault Recovery and Zero‑Touch Game Server Launch
Architect
Architect
Jul 27, 2015 · Backend Development

Design and Architecture of Specialized Search Services

The article explains the concept of specialized search, its service model, and detailed backend architecture considerations such as interface standards, traffic distribution, service invocation, and component reuse, illustrated with protobuf definitions and deployment diagrams.

Searchbackendprotobuf
0 likes · 8 min read
Design and Architecture of Specialized Search Services
Architect
Architect
Jul 27, 2015 · Databases

Evolution of MySQL Architecture for Different Concurrency Levels

This article describes how MySQL architectures evolve from a single instance to vertical splitting, master‑slave replication, horizontal sharding, and cloud‑based SaaS solutions to handle increasing traffic, data size, and operational requirements while maintaining scalability and availability.

Database ArchitectureMySQLcloud SaaS
0 likes · 13 min read
Evolution of MySQL Architecture for Different Concurrency Levels
Qunar Tech Salon
Qunar Tech Salon
Jul 27, 2015 · Frontend Development

JavaScript JSON Number Handling and Integer Overflow Issues

The article explains how JavaScript interprets JSON values without quotation marks as numbers, demonstrates the difference between numeric and string representations of the same value, and warns that large numeric literals may overflow a 32‑bit integer during internal conversion.

Data TypesJavaScriptinteger overflow
0 likes · 2 min read
JavaScript JSON Number Handling and Integer Overflow Issues
Qunar Tech Salon
Qunar Tech Salon
Jul 27, 2015 · Backend Development

Parsing XML with Perl in Three Lines

This short tutorial shows how to use Perl's XML::Simple module to load an XML file and iterate over its elements with just three lines of code, providing a quick backend solution for XML data extraction.

CodeSnippetParsingXML
0 likes · 2 min read
Parsing XML with Perl in Three Lines