PL/SQL SQL CODING GUIDELINE 49 - Avoid use of unreferenced FOR loop indexes

條款四十九,避免未使用的 FOR loop 索引。 ...

June 12, 2017 · 1 min · 169 words · Larry Nung

MsgPack.Cli - MessagePack implementation for Common Language Infrastructure

MsgPack.Cli 是 MessagePack 在 CLI 下的實作,如果要在 .NET 程式裡面使用 MessagePack,可以直接透過 NuGet 安裝使用。 ...

June 9, 2017 · 1 min · 410 words · Larry Nung

MessagePack - An efficient binary serialization format

MessagePack 是一個有效率的二進制序列化格式,傳遞的資料內容有點像是 JSON,但是因為是二進制的序列化格式,所以資料量更快且更小。 ...

June 9, 2017 · 2 min · 590 words · Larry Nung

PL/SQL SQL Coding Guideline 48 - Do not use a cursor FOR loop to check whether a cursor returns data

條款四十八,不要遍巡 CURSOR 去確認是否含有資料。 ...

June 8, 2017 · 1 min · 148 words · Larry Nung

PL/SQL SQL CODING GUIDELINE 47 - Try to label your EXIT WHEN statements

條款四十七,嘗試將 EXIT WHEN 搭配 label 使用。 ...

June 7, 2017 · 1 min · 153 words · Larry Nung

PL/SQL SQL Coding Guideline 46 - Always use EXIT WHEN instead of an IF statement to exit from a loop

條款四十六,總是使用 EXIT WHILE loop 去跳離迴圈,不要使用 IF…EXIT。 ...

June 7, 2017 · 1 min · 209 words · Larry Nung

PL/SQL SQL Coding Guideline 45 - Avoid using EXIT to stop loop processing unless you are in a basic loop

條款四十五,避免使用 EXIT 去跳離迴圈,除非使用的是 basic loop。 ...

June 6, 2017 · 1 min · 220 words · Larry Nung

Logstash - grok filter

grok filter 能讓我們使用 Grok 語法簡易的切割 Logstash field。 ...

June 5, 2017 · 2 min · 788 words · Larry Nung

Winlogbeat - Install Winlogbeat on Windows

要在 Windows 下使用 Winlogbeat,可先至官網下載下來解壓縮。 ...

June 4, 2017 · 1 min · 253 words · Larry Nung

Logstash - Getting started

Logstash 安裝好後,可以用 Logstash 的 -e 參數帶入 Logstash 設定快速的體驗一下。 ...

June 3, 2017 · 1 min · 192 words · Larry Nung