Skip to content

Commit

Permalink
fix: fix invalid link
Browse files Browse the repository at this point in the history
  • Loading branch information
siyul-park committed Sep 21, 2024
1 parent 8bebcfd commit 8e462b7
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 24 deletions.
2 changes: 0 additions & 2 deletions docs/architecture_kr.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,8 +301,6 @@
| | Node Specification | |-->| Loader |
| +--------------------+ | | +-------------+ |
+--------------------------+ | | Scheme | |
| +--------------------+ | | +-------------+ |
+--------------------------+ | | Scheme | |
+--------------------------+ | | +-------+ | |
| Database | | | | Codec | | |--+
| +--------+ +--------+ | | | +-------+ | | |
Expand Down
44 changes: 22 additions & 22 deletions ext/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,40 +8,40 @@ Built-in extensions enable efficient processing of various tasks and maximize sy

Precisely manage data flow.

- **[Call Node](./docs/call_node_en.md)**: Processes input packets and distributes results to multiple output ports, allowing for reusable data flows.
- **[Block Node](./docs/block_node_en.md)**: Systematically manages complex data processing flows and executes multiple sub-nodes sequentially.
- **[Fork Node](./docs/fork_node_en.md)**: Asynchronously branches data flows to perform independent tasks in parallel.
- **[If Node](./docs/if_node_en.md)**: Evaluates conditions to split packets into two paths.
- **[Loop Node](./docs/loop_node_en.md)**: Divides input packets into multiple sub-packets for repeated processing.
- **[Merge Node](./docs/merge_node_en.md)**: Combines multiple input packets into one.
- **[NOP Node](./docs/nop_node_en.md)**: Responds to input packets with an empty packet, without any processing.
- **[Reduce Node](./docs/reduce_node_en.md)**: Repeatedly processes input data to produce a single output value, useful for data aggregation.
- **[Session Node](./docs/session_node_en.md)**: Stores and manages process information, maintaining session continuity.
- **[Snippet Node](./docs/snippet_node_en.md)**: Executes code snippets written in various programming languages to process input packets.
- **[Split Node](./docs/split_node_en.md)**: Splits input packets into multiple parts for processing.
- **[Switch Node](./docs/switch_node_en.md)**: Routes input packets to one of several ports based on conditions.
- **[Call Node](./docs/call_node.md)**: Processes input packets and distributes results to multiple output ports, allowing for reusable data flows.
- **[Block Node](./docs/block_node.md)**: Systematically manages complex data processing flows and executes multiple sub-nodes sequentially.
- **[Fork Node](./docs/fork_node.md)**: Asynchronously branches data flows to perform independent tasks in parallel.
- **[If Node](./docs/if_node.md)**: Evaluates conditions to split packets into two paths.
- **[Loop Node](./docs/loop_node.md)**: Divides input packets into multiple sub-packets for repeated processing.
- **[Merge Node](./docs/merge_node.md)**: Combines multiple input packets into one.
- **[NOP Node](./docs/nop_node.md)**: Responds to input packets with an empty packet, without any processing.
- **[Reduce Node](./docs/reduce_node.md)**: Repeatedly processes input data to produce a single output value, useful for data aggregation.
- **[Session Node](./docs/session_node.md)**: Stores and manages process information, maintaining session continuity.
- **[Snippet Node](./docs/snippet_node.md)**: Executes code snippets written in various programming languages to process input packets.
- **[Split Node](./docs/split_node.md)**: Splits input packets into multiple parts for processing.
- **[Switch Node](./docs/switch_node.md)**: Routes input packets to one of several ports based on conditions.

### **IO**

Supports interaction with external data sources.

- **[Print Node](./docs/print_node_en.md)**: Outputs input data to a file for debugging or monitoring data flow.
- **[Scan Node](./docs/scan_node_en.md)**: Scans various input data formats to extract and process required data.
- **[SQL Node](./docs/sql_node_en.md)**: Interacts with relational databases to execute SQL queries and return results as packets.
- **[Print Node](./docs/print_node.md)**: Outputs input data to a file for debugging or monitoring data flow.
- **[Scan Node](./docs/scan_node.md)**: Scans various input data formats to extract and process required data.
- **[SQL Node](./docs/sql_node.md)**: Interacts with relational databases to execute SQL queries and return results as packets.

### **Network**

Facilitates smooth execution of network-related tasks across various protocols.

- **[HTTP Node](./docs/http_node_en.md)**: Processes HTTP requests and returns responses, suitable for web service communication.
- **[WebSocket Node](./docs/websocket_node_en.md)**: Establishes WebSocket connections and handles message sending and receiving.
- **[Gateway Node](./docs/gateway_node_en.md)**: Upgrades HTTP connections to WebSocket for real-time data communication.
- **[Listener Node](./docs/listener_node_en.md)**: Receives network requests on specified protocols and ports.
- **[Proxy Node](./docs/proxy_node_en.md)**: Proxies HTTP requests to other servers and returns their responses.
- **[Router Node](./docs/router_node_en.md)**: Routes input packets to multiple output ports based on conditions.
- **[HTTP Node](./docs/http_node.md)**: Processes HTTP requests and returns responses, suitable for web service communication.
- **[WebSocket Node](./docs/websocket_node.md)**: Establishes WebSocket connections and handles message sending and receiving.
- **[Gateway Node](./docs/gateway_node.md)**: Upgrades HTTP connections to WebSocket for real-time data communication.
- **[Listener Node](./docs/listener_node.md)**: Receives network requests on specified protocols and ports.
- **[Proxy Node](./docs/proxy_node.md)**: Proxies HTTP requests to other servers and returns their responses.
- **[Router Node](./docs/router_node.md)**: Routes input packets to multiple output ports based on conditions.

### **System**

Manages and optimizes system components.

- **[Native Node](./docs/native_node_en.md)**: Performs function calls within the system and returns results as packets.
- **[Native Node](./docs/native_node.md)**: Performs function calls within the system and returns results as packets.

0 comments on commit 8e462b7

Please sign in to comment.