ForewordTLS (Transport Layer Security) is a cryptographic protocol that provides secure communication over a network, commonly used to secure HTTP tra ...
C language implement foreach
ForewordIn PostgreSQL, there isn’t a native foreach loop construct in C, because C itself doesn’t have a foreach loop as you might find in higher-leve ...
How can we use vscode debug PostgreSQL running process by source code?
ForewordUsing gdb for command-line debugging still feels inconvenient. I initially wanted to find a simpler way to directly debug the PostgreSQL sourc ...
Azure PostgreSQL Flexible long term backup with Managed Identity
IntroductionThis ariticle will guide us how to do long-term backup (more than 35 days) on Azure PostgreSQL Flexible. Prerequisites: A Postgres flexibl ...
postgresql source code install
前言因為工作需要最近在研究 postgresql DB,postgresql DB 是一個 Open Source RDBMS,所以有任何問題疑問都可以把 source code 下載並 debug 了解原因,本篇希望可以快速幫助想要透過 source code 安裝 postgresql DB 的 ...
AWS Certified Solutions Architect - Associate (SAA-C02) 考試重點與心得
前言我算是一個雲端小白,自從進入目前公司後才開始接觸雲端相關概念並感受到雲端服務威力 我會想參加 SSA 考試主要有下面幾個原因 主要是想趕在 SAA-C02 (2022-08) 換考試範圍前來測驗 感覺放在履歷上,增加職場競爭力 驗收自己目前對於雲端相關知識 目前在架構 Team 擔任工程師,希 ...
Serverless + CloudFormation 撰寫 lambda
前言AWS lambda 作為 serverless 服務,之前有介紹過 AWS Lambda 初體驗 by .net core,本次要介紹 serverless 框架搭配 AWS CloudFormation (IaC) Serverless 預設使用 provider 是 AWS AWS is ...
Postgresql AutoVacuum 介紹
前言AutoVacuum 在 Postgresql 是一個很重要的機制(甚至可以說最重要也不為過),但裡面有些地方需要了解今天就帶大家初探 資料 & 測試資料資訊本次執行 Sample Data CREATE TABLE T1 ( ID INT NOT NULL PRIMARY KEY ...
Redis Cluster 介紹
前言在巨量資料下,資料庫合理的分片(DB sharding)可以幫助我們承受更高量的資料量(前提Index還有設定都調教到很好在考慮 sharding) 而在 Redis 世界裡也有 redis cluster 來做 sharding 事情,今天就來跟大家分享介紹 我使用是 bitnami redi ...
Ndepend 靜態分析 .Net 專案好物
前言當一個專案越來越大,在開發新產品時同時要兼顧程式碼品質會越來越困難,今天要介紹的 Ndepend 是一個很優秀靜態分析 .Net 專案好物 會幫我們產生一個 DashBoard 來了解目前專案大致上分析後的問題,並提供建議解法和處理方向,讓我們提前更快速抓出未來或目前存在 bug,減少發生需要晚 ...