Skip to main content

· 7 min read
therainisme

Solana 的 SVM(Solana Virtual Machine)是其核心虚拟机系统,专门设计用于支持高性能的去中心化应用(DApp)运行。与以太坊的EVM(Ethereum Virtual Machine)相比,SVM 在设计上专注于并行处理、低延迟和高吞吐量,以支持大规模的去中心化应用和交易处理。不过 SVM 不支持 Solidity,只支持 Rust、C/C++ 和 Python 编写的智能合约。

· 20 min read
therainisme

Solana 是一个高性能的区块链平台,采用独特的技术架构实现高吞吐量和低延迟。其核心技术包括:

  • Proof of History (POH) 算法确保交易顺序和全局时钟
  • Leader Rotation Schedule 和 Tower BFT 共识机制提高区块出块速率
  • Turbine 机制通过 Reed-solomon 编码优化大区块传播。
  • Solana Virtual Machine (SVM) 和 Sealevel 并行执行引擎加快交易执行速度。

这些都是 Solana 实现高性能的架构设计,但同时也带了一些问题,如网络宕机、交易失败、MEV 问题、状态增长过快和中心化问题,我们在本文中着重阐述了 Proof of History (POH) 这种新机制。

Solana面临的另一个潜在不利因素是竞争环境。以太坊的 Layer-2 解决方案(如 Optimism 和 Arbitrum)正在获得越来越多的关注,它们在保持以太坊主网安全和去中心化的同时,提供了更快、更便宜的交易。

· 17 min read
therainisme

在构建 SGX 应用程序时,必须考虑在使用 Enclave 时它们可能遭受的性能下降。这种性能开销主要是由于 Enclave 初始化、PRM 数据的加密/解密以及在普通代码和 Enclave 代码 (Ocall / Ecall)之间切换等因素造成的。其中一些问题与 SGXv1 有关,本文中提出的解决方案,有些已经被 SGXv2 甚至 SGX SDK 的更新所包含。

· 62 min read
therainisme

Abstract  Recently, the Log-Structured Merge-tree (LSM-tree) has been widely adopted for use in the storage layer of modern NoSQL systems. Because of this, there have been a large number of research efforts, from both the database community and the operating systems community, that try to improve various aspects of LSM-trees. In this paper, we provide a survey of recent research efforts on LSM-trees so that readers can learn the state-of-the-art in LSM-based storage techniques. We provide a general taxonomy to classify the literature of LSM-trees, survey the efforts in detail, and discuss their strengths and trade-offs. We further survey several representative LSM-based open-source NoSQL systems and discuss some potential future research directions resulting from the survey.

该篇博客的主要内容是对该综述论文的理解与转述。