使用联合索引优化查询效率 Posted on June 5, 2024 在数据库设计和查询优化中,联合索引是一个强大的工具,它可以显著提高数据检索的速度。然而,要充分利用联合索引的优势,我们需要理解它们是如何影响查询效率的。本文将探讨联合索引的工作原理以及如何使用它们来优化查询。 [Read More] Tags: mysql
Ubuntu 24.04安装shadowsocks-libev Posted on June 3, 2024 Shadowsocks-libev 是一个基于 libev 的高性能的代理工具,支持多种加密方式,适用于个人和企业的网络加速。本文将指导您在 Ubuntu 24.04 上安装 Shadowsocks-libev。 [Read More] Tags: tools
Solidity:存钱罐合约 Posted on May 28, 2024 ```solidity // SPDX-License-Identifier: MIT pragma solidity ^0.8.25; [Read More] Tags: blockchain solidity
Solidity:Gas 优化 Posted on May 27, 2024 在Solidity中,优化gas使用是非常重要的,因为每一笔交易都需要消耗gas。以下是一些可以帮助你优化gas使用的技巧: [Read More] Tags: blockchain solidity