首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏囍楽云博客

    内存数据库 mysql-mysql in memory_In-Memory:内存数据库

    在内存数据库中,不是所有的数据都需要存储在内存中,有些数据仍然能够存储在Disk上,硬盘表(Disk-Based Table,简称DBT)是传统的表存储结构,每个Page是8KB,在查询和更新DBT时, 必须设置两个选项:    LEVEL:指定Atomic Block开启事务的隔离级别,通常指定隔离级别;   :指定SP上下文的语言;   3,解释型SP和本地编译SP的区别   解释性SP能够访问硬盘表(Disk-Based 4,延迟持久化   在本地编译SP中,设置Atoic Block的选项: = ON ,使SP对内存优化表的更新操作,以异步写事务日志方式,延迟持久化到Disk,这意味着,如果内存优化表维护了一个Disk-Based 的副本,数据在内存中修改之后,不会立即更新到Disk-Based 的副本中,这有丢失数据的可能性,但是能够减少Disk IO,提高数据更新的性能。    五,内存数据库的事务处理   交叉事务是指在一个事务中,解释性TSQL语句同时访问内存优化表(Memory- Table,简称MOT)和硬盘表(Disk-Based Table,简称DBT)。

    3.5K10编辑于 2022-12-29
  • 来自专栏YG小书屋

    ES存在unassinged shard的调试方式

    关于ES集群的Cluster Level Shard Allocation和Disk-Based Shard Allocation,大家可以自己看一下。 在Disk-Based Shard Allocation中有提到一个属性cluster.routing.allocation.disk.include_relocations,这个属性为true时,ES

    1.6K30发布于 2018-05-23
  • 来自专栏python3

    redis主从

    ,非常消耗I/O 145 save "" 镜像备份文件的文件名 177 dbfilename dump-6379.rdb 数据库镜像备份的文件放置的路径 187 dir /redis/data/ 禁用disk-based

    73820发布于 2018-08-02
  • 来自专栏AustinDatabases

    数据存储结构 LSM Tree PK B TREE (从底层了解数据库设计)

    Unfortunately, standard disk-based index structures such as the B-tree will effectively double the I/ The Log-Structured Merge-tree (LSM-tree) is a disk-based data structure designed to provide low-cost

    2.2K20发布于 2020-04-24
  • 来自专栏summer it专栏

    大数据

    : Schema-based 不好水平拆分,不适合互联网环境 Transactions 分布式环境难以实现 Traditional applications 并发能力差(lock) Disk-based

    1K10发布于 2018-05-30
  • 来自专栏铭毅天下

    Elasticsearch 磁盘使用率超过警戒水位线,怎么办?

    基于磁盘的分片分配器(The disk-based shard allocator)可以自动添加和删除index.blocks.read_only属性的数据块。

    3.5K80编辑于 2022-02-09
  • 来自专栏YG小书屋

    磁盘空间引起ES集群shard unassigned的处理过程

    按理说ES集群会自动做均衡的,不应该会出现某个盘满的情况,关于ES集群的Cluster Level Shard Allocation和Disk-Based Shard Allocation,大家可以自己看一下

    2.8K10发布于 2018-05-23
  • 来自专栏流川疯编写程序的艺术

    基于python 的轻量级线程安全、持久化本地消息队列:persist-queue

    简介:persist-queue - A thread-safe, disk-based queue for Python ======================================= Disk-based: each queued item should be stored in disk in case of any crash.

    88920编辑于 2023-10-13
  • 来自专栏Reinvent Data Science

    关于向量数据库,你需要知道的一切

    terms of absolute memory, but to facilitate read and write speeds, they are usually stored in-memory (disk-based

    2.1K30编辑于 2022-02-21
  • 来自专栏Pseudoyu

    COMP7801 Topic 3 Spatial Networks

    queries, nearest neighbor search, and spatial joins Spatial networks could be too large to fit in memory Disk-based

    35310编辑于 2023-04-11
  • 来自专栏公众号:懒时小窝

    【Postgresql】索引类型(btree、hash、GIST、GIN)

    phone_no); 在官方介绍中介绍Sp-Gist的核心如下: SP-GiST permits implementation of a wide range of different non-balanced disk-based

    6.7K40编辑于 2023-02-23
  • 来自专栏索码理

    【MySQL系列】- Redo log知多少

    官网定义: ❝A disk-based data structure used during crash recovery, to correct data written by incomplete

    73420编辑于 2022-09-20
  • 来自专栏Pseudoyu

    COMP7801 Topic 1b Database Indexing

    overhead Advantages of B+-trees outweigh disadvantages, and they are used extensively Basic Properties Disk-based

    41310编辑于 2023-04-11
  • 来自专栏DBA随笔

    group by如何优化?

    For SQL_BIG_RESULT, MySQL directly uses disk-based temporary tables if they are created, and prefers

    2.7K60发布于 2020-06-06
  • 来自专栏数据库相关

    SHOW PROCESSLIST的各个状态说明

    Consequently, the thread is changing the temporary table from in-memory to disk-based format to save

    2.2K20发布于 2019-09-18
  • Apache Commons工具集简介

    使用示例:// Create a factory for disk-based file items FileItemFactory factory = new DiskFileItemFactory(

    30910编辑于 2025-08-29
  • 来自专栏老男孩成长之路

    MySQL 是如何实现 ACID 中的 D 的?

    The redo log is a disk-based data structure used during crash recovery to correct datawritten by incomplete

    1.1K30发布于 2020-02-13
  • 来自专栏数据库相关

    pt-heartbeat 监测RDS延迟

    Consequently, the threadis changing the temporary table from in-memory to disk-based format to savememory

    5.6K20发布于 2019-09-18
  • 来自专栏数据库相关

    MySQL SHOW PROCESSLIST 状态详解

    Consequently, the threadis changing the temporary table from in-memory to disk-based format to savememory

    2.2K20发布于 2019-09-18
  • 来自专栏码农沉思录

    Apache Commons 工具类介绍及简单使用

    //下面提供了几种控制选择: // Create a factory for disk-based file items DiskFileItemFactory factory = new DiskFileItemFactory // 解析所有请求 List /* FileItem */ items = upload.parseRequest(request); // Create a factory for disk-based

    2.6K10发布于 2019-12-24
领券