Skip to content

Latest commit

 

History

History
37 lines (21 loc) · 1.67 KB

File metadata and controls

37 lines (21 loc) · 1.67 KB
graph LR
    Query_Engine["Query Engine"]
    Core_Module_Logic["Core Module Logic"]
    Query_Engine -- "interacts with" --> Core_Module_Logic
    click Query_Engine href "https://github.com/CodeBoarding/GeneratedOnBoardings/blob/main/valkey-timeseries/Query_Engine.md" "Details"
    click Core_Module_Logic href "https://github.com/CodeBoarding/GeneratedOnBoardings/blob/main/valkey-timeseries/Core_Module_Logic.md" "Details"
Loading

CodeBoardingDemoContact

Details

Abstract Components Overview

Query Engine [Expand]

The Query Engine is responsible for parsing user-provided query arguments, translating these into internal operations, and orchestrating the retrieval of time series data. It interacts with the Core Module Logic for filtering and indexing operations.

Related Classes/Methods:

  • src/query.rs (1:1)

Core Module Logic [Expand]

This core module provides the fundamental functionalities for managing time series data, including efficient indexing and filtering mechanisms. It serves as the underlying data management layer for components like the Query Engine.

Related Classes/Methods:

  • src/filter.rs (1:1)
  • src/index.rs (1:1)