积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部数据库(276)数据库工具(76)PostgreSQL(42)TiDB(40)phpMyAdmin(35)Firebird(33)DBeaver(31)Greenplum(20)数据库中间件(19)Vitess(11)

语言

全部英语(197)中文(简体)(54)德语(7)俄语(5)英语(5)葡萄牙语(2)中文(简体)(2)西班牙语(1)法语(1)

格式

全部PDF文档 PDF(258)其他文档 其他(17)PPT文档 PPT(1)
 
本次搜索耗时 0.085 秒,为您找到相关结果约 276 个.
  • 全部
  • 数据库
  • 数据库工具
  • PostgreSQL
  • TiDB
  • phpMyAdmin
  • Firebird
  • DBeaver
  • Greenplum
  • 数据库中间件
  • Vitess
  • 全部
  • 英语
  • 中文(简体)
  • 德语
  • 俄语
  • 英语
  • 葡萄牙语
  • 中文(简体)
  • 西班牙语
  • 法语
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 《Redis使用手册》(试读版)

    1-1 检查连接的脚本:/introduction/check_connection.py from redis import Redis client = Redis() # ping() ⽅法在连接正常时将返回 True if client.ping() is True: print("connecting") else: print("disconnected") __init__(self, client): self.client = client def set(self, key, value): """ 把需要被缓存的数据储存到键 key ⾥⾯, 如果键 key 已经有值,那么使⽤新值去覆盖旧值。 """ self.client.set(key, """ 获取储存在键 key ⾥⾯的缓存数据, 如果数据不存在,那么返回 None 。 """ return self.client.get(key) def update(self, key, new_value): """ 对键 key 储存的缓存数据进⾏更新,
    0 码力 | 352 页 | 6.57 MB | 1 年前
    3
  • pdf文档 Apache Cassandra™ 10 Documentation February 16, 2012

    PropertyFileSnitch 19 EC2Snitch 19 EC2MultiRegionSnitch 19 About Dynamic Snitching 19 About Client Requests in Cassandra 19 About Write Requests 20 About Multi-Data Center Write Requests 20 About Consistency for Client Requests 58 About Write Consistency 58 About Read Consistency 58 Choosing Client Consistency Levels 59 Consistency Levels for Multi-Data Center Clusters 59 Specifying Client Consistency Features 60 Cassandra Client APIs 60 About Cassandra CLI 60 About CQL 61 Other High-Level Clients 61 Java: Hector Client API 61 Python: Pycassa Client API 61 PHP: Phpcassa Client API 61 Getting Started
    0 码力 | 141 页 | 2.52 MB | 1 年前
    3
  • pdf文档 SQLite Development with Zumero

    SQLITE_OPEN_READWRITE|SQLITE_OPEN_CREATE, NULL); zumero_register(db); Alternatively, the Zumero client library may have been provided as a dynamically loadable extension: SELECT load_extension('zumero a SQLite database file, one on the client, and the other on the server. We can refer to these two copies as two instances of the same SQLite database. On the client, all of your interaction with the SQLite which one is which, each one is given a unique name. Unlike the filesystem abstraction presented on a client, the server's abstraction is a flat list, not a hierarchy. The Zumero server is very particular
    0 码力 | 57 页 | 199.89 KB | 1 年前
    3
  • pdf文档 firebird wire protocol

    Jaybird (Firebird JDBC driver). The protocol is described in the form of the message sent by the client and received from the server. The described protocol is Firebird/Interbase protocol version 10. vector, information request items, and the meaning of operations. Unless otherwise indicated, a client request must be flushed to the server for processing. For some operations the flush can be deferred attachment to a database. 3.1.1. Identification Performs the initial handshake and protocol selection. Client Int32 Operation code (op_connect) Int32 Operation code (op_attach) Int32 Version (CONNECT_VERSION2)
    0 码力 | 40 页 | 213.15 KB | 1 年前
    3
  • pdf文档 Greenplum数据仓库UDW - UCloud中立云计算服务商

    MPP 架构,适⽤于海量数据的存储和计算。UDW 的架构如上图所⽰,主要有 Client、Master Node 和 Compute Node 组成。基本组成部分的功能如下: 产品架构 Greenplum数据仓库 UDW Copyright © 2012-2021 UCloud 优刻得 7/206 1. Client:访问 UDW 的客⼾端 ⽀持通过 JDBC、ODBC、PHP、Python、命令⾏ com/greenplum-client.tar tar -zxvf greenplum-client.tar.gz 2)配置udw客⼾端 进⼊ greenplum-client 安装⽬录,编辑 greenplum_client_path.sh 修改UDW_HOME(export UDW_HOME= client安装⽬录)(如/root/greenplum-client) 3) 使配置⽣效 在~/ 在~/.bashrc中添加如下配置 source /data/greenplum-client/greenplum\_client\_path.sh 执⾏ source ~/.bashrc 备注:/data/greenplum-client是greenplum-client的安装路径 4) 连接数据库 psql -h hostIP(或域名) –U username -d database
    0 码力 | 206 页 | 5.35 MB | 1 年前
    3
  • pdf文档 The Vitess 7.0 Documentation

    standalone tool (vtctl) and client- server (vtctlclient in combination with vtctld). Using client-server is recommended, as it provides an additional layer of security when using the client remotely. Using vtctl that routes traffic to the correct VTTablet servers and returns consolidated results back to the client. It speaks both the MySQL Protocol and the Vitess gRPC protocol. Thus, your applications can connect sudo apt-get install -y mysql-server mysql-client make unzip g++ etcd curl git wget # Debian sudo apt-get install -y default -mysql-server default -mysql-client make unzip g++ etcd curl wget 21 The services
    0 码力 | 254 页 | 949.63 KB | 1 年前
    3
  • pdf文档 The Vitess 12.0 Documentation

    . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 371 Client authentication . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 381 Generating client certificates with easy-rsa . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . are handled by Vitess and how they are handled. System variable Handled autocommit VitessAware client_found_rows VitessAware skip_query_plan_cache VitessAware tx_read_only VitessAware transaction_read_only
    0 码力 | 534 页 | 3.32 MB | 1 年前
    3
  • pdf文档 firebird 5 quickstartguide

    running . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 3.5. Performing a client-only install . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 32 Table of Contents 1 6.2.2. Connecting with a GUI client . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . additional process for each client connection. Using a locking mechanism, it allows shared connections to database files. • SuperClassic (ThreadedShared) is a single server process. Client connections are handled
    0 码力 | 49 页 | 396.21 KB | 1 年前
    3
  • pdf文档 Firebird 2.1.5 Installation

    Connection Protocol with XNet .................................................................... 10 Client Impersonation No Longer Works .................................................................. ............................................................................................ 28 Client-only Installs .................................................................................. the end of the result set Important In former versions, NULLs were always at the end. If you have client code or PSQL definitions that rely on the legacy NULLs placement, it will be necessary to use the
    0 码力 | 46 页 | 217.89 KB | 1 年前
    3
  • pdf文档 The Vitess 8.0 Documentation

    are handled by Vitess and how they are handled. System variable Handled autocommit VitessAware client_found_rows VitessAware skip_query_plan_cache VitessAware tx_read_only VitessAware transaction_read_only mit ReservedConn binlog_format CheckAndIgnore block_encryption_mode CheckAndIgnore character_set_client CheckAndIgnore character_set_connection CheckAndIgnore character_set_database CheckAndIgnore cha standalone tool (vtctl) and client- server (vtctlclient in combination with vtctld). Using client-server is recommended, as it provides an additional layer of security when using the client remotely. Using vtctl
    0 码力 | 331 页 | 1.35 MB | 1 年前
    3
共 276 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 28
前往
页
相关搜索词
Redis使用手册使用手册试读ApacheCassandra10DocumentationFebruary162012SQLSQLiteDevelopmentwithZumerofirebirdwireprotocolGreenplum数据仓库数据仓库UDWUCloud中立计算服务服务商TheVitess7.0Documentation12.0quickstartguideFirebird2.1Installation8.0
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩