3 Key Elements for Your GitOps strategy
3 KEY ELEMENTS FOR YOUR GITOPS STRATEGY Copyright 2024 Akamai Technologies. All rights reserved. Any trademarked names and logos are property of their respective companies. EBOOK GITOPS 3 KEY ELEMENTS . . . . . . . . . . . . . . . . . . . . . 12 | 03 3 KEY ELEMENTS FOR YOUR GITOPS STRATEGY Copyright 2024 Akamai Technologies. All rights reserved. Any trademarked philosophy of GitOps, what your current deployment strategy looks like, and essential tools are key to implementing a successful GitOps strategy. In this ebook you will learn: • a refresher on the0 码力 | 14 页 | 761.79 KB | 1 年前34.Apache RocketMQ Meetup Shenzhen.key
0 码力 | 40 页 | 27.97 MB | 1 年前3CIS 1.6 Benchmark - Self-Assessment Guide - Rancher v2.5.4
file permissions are set to 644 or more restrictive (Automated) 1.1.21 Ensure that the Kubernetes PKI key file permissions are set to 600 (Automated) 1.1.1 Ensure that the API server pod specification file is set to true (Automated) 1.2.5 Ensure that the --kubelet-client-certificate and -- kubelet-client-key arguments are set as appropriate (Automated) 1.2.6 Ensure that the --kubelet-certificate-authority --service-account-lookup argument is set to true (Automated) 1.2.28 Ensure that the --service-account-key-file argument is set as appropriate (Automated) 1.2.29 Ensure that the --etcd-certfile and --etcd-keyfile0 码力 | 132 页 | 1.12 MB | 1 年前3《Redis使用手册》(试读版)
SET:为字符串键设置值 创建字符串键最常⽤的⽅法就是使⽤ SET 命令, 这个命令可以为⼀个字符串键设置相应的值。 在最基本的情况 下, ⽤户只需要向 SET 命令提供⼀个键和⼀个值就可以了: SET key value 跟之前提到过的⼀样, 这⾥的键和值既可以是⽂字也可以是⼆进制数据。 SET 命令在成功创建字符串键之后将返回 OK 作为结果。 ⽐如说, 通过执⾏以下命令, 我们可以创建出⼀个字符 to Horizon" 。 从 Redis 2.6.12 版本开始, ⽤户可以通过向 SET 命令提供可选的 NX 选项或者 XX 选项来指示 SET 命令是否要覆 盖⼀个已经存在的值: SET key value [NX|XX] 如果⽤户在执⾏ SET 命令时给定了 NX 选项, 那么 SET 命令只会在键没有值的情况下执⾏设置操作, 并返回 OK 表示设置成功; 如果键已经存在, 那么 SET XX 等可选项的 SET 命 令从 Redis 2.6.12 版本开始可⽤。 2.2 GET:获取字符串键的值 ⽤户可以通过使⽤ GET 命令, 从数据库⾥⾯获取指定字符串键的值: GET key GET 命令接受⼀个字符串键作为参数, 然后返回与该键相关联的值。 ⽐如对于图 2-4 所示的数据库来说, 我们可以通过执⾏以下 GET 命令来取得各个字符串键相关联的值: redis> GET0 码力 | 352 页 | 6.57 MB | 1 年前3使用Go与redis构建有趣的应用
“cherry” 3.7 “apple” 8.3 “durian” 键 值 命令请求 COMMAND <key>… OPTION1 … 命令 键 参数 选项 选项的值 命令请求 COMMAND <key> … OPTION1 … 命令 锁未被获取,程序可以通过为其设置值来获取锁。 键 “LOCK_KEY” 值 nil 未 加 锁 ⽅方法⼀一 —— 使⽤用字符串串 将⼀一个字符串串键⽤用作锁,如果这个键有值,那么说明锁已被获取;反之,如果键没有值,那么说明 锁未被获取,程序可以通过为其设置值来获取锁。 键 “LOCK_KEY” 值 nil 键 “LOCK_KEY” 值 “LOCKING” 未 加 锁 已 加 锁 需要⽤用到的命令 GET key 获取字符串串键 key 的值,如果该键尚未有值,那么返回⼀一个空值(nil) 需要⽤用到的命令 GET key 获取字符串串键 key 的值,如果该键尚未有值,那么返回⼀一个空值(nil) SET key value 将字符串串键 key 的值设置为 value ,如果键已经有值,那么默认使⽤用新值去覆盖旧值 需要⽤用到的命令 GET key 获取字符串串键 0 码力 | 176 页 | 2.34 MB | 1 年前3Apache ShardingSphere 5.1.2 Document
Expression . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31 Distributed Primary Key . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 35 Hint Sharding Route . . . . . . 130 Sharding Algorithm . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 131 Key Generate Algorithm . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 136 Load Balance exception occurs. . . . . . . . . 360 x 7.8.13 [Sharding] Why are the default distributed auto‐augment key strategy provided by ShardingSphere not continuous and most of them end with even numbers? . 3610 码力 | 503 页 | 3.66 MB | 1 年前3peewee Documentation Release 3.4.0
Non-integer Primary Keys, Composite Keys and other Tricks Self-referential foreign keys Circular foreign key dependencies Querying Creating a new record Bulk inserts Updating existing records Atomic updates sqlite driver Sqlcipher backend Postgresql Extensions MySQL Extensions DataSet Fields Hybrid Attributes Key/Value Store Shortcuts Signal support pwiz, a model generator Schema Migrations Reflection Database relationships between models using foreign keys (wikipedia) [http://en.wikipedia.org/wiki/Foreign_key]. This is easy to do with peewee: class Pet(Model): owner = ForeignKeyField(Person, backref='pets')0 码力 | 349 页 | 382.34 KB | 1 年前3peewee Documentation Release 3.4.0
our data. This will create the tables with the appropriate columns, indexes, sequences, and foreign key constraints: db.create_tables([Person, Pet]) 1.2.2 Storing data Let’s begin by populating the database Message model stores the text content of the tweet, when it was created, and who posted it (foreign key to User). If you like UML, these are the tables and relationships: 12 Chapter 1. Contents: peewee ) # a dead simple one-to-many relationship: one user has 0..n messages, exposed by # the foreign key. because we didn't specify, a users messages will be accessible # as a special attribute, User.messages0 码力 | 284 页 | 1.03 MB | 1 年前3peewee Documentation Release 3.3.0
our data. This will create the tables with the appropriate columns, indexes, sequences, and foreign key constraints: db.create_tables([Person, Pet]) 1.2.2 Storing data Let’s begin by populating the database Message model stores the text content of the tweet, when it was created, and who posted it (foreign key to User). If you like UML, these are the tables and relationships: 12 Chapter 1. Contents: peewee ) # a dead simple one-to-many relationship: one user has 0..n messages, exposed by # the foreign key. because we didn't specify, a users messages will be accessible # as a special attribute, User.messages0 码力 | 280 页 | 1.02 MB | 1 年前3Celery v5.0.5 Documentation
(experimental). for using the SoftLayer Message Queue transport (experimental). for using the Consul.io Key/Value store as a message transport or result backend (experimental). specifies the lowest version timeouts To configure the connection timeouts for the Redis result backend, use the retry_policy key under result_backend_transport_options: app.conf.result_backend_transport_options = { 'retry_policy': describing the number of seconds. Key eviction Redis may evict keys from the database in some situations If you experience an error like: InconsistencyError: Probably the key ('_kombu.binding.celery') has0 码力 | 2315 页 | 2.14 MB | 1 年前3
共 1000 条
- 1
- 2
- 3
- 4
- 5
- 6
- 100