semantic-ds-toolkit
Version:
Performance-first semantic layer for modern data stacks - Stable Column Anchors & intelligent inference
36 lines • 1.28 kB
TypeScript
/**
* Semantic Join Examples and Usage Patterns
*
* This file demonstrates how to use the semantic join system for various
* real-world data integration scenarios.
*/
/**
* Example 1: Customer Data Integration
* Scenario: Joining CRM customer data with transaction records
*/
export declare function customerDataIntegrationExample(): Promise<void>;
/**
* Example 2: Product Catalog Synchronization
* Scenario: Joining product master data with inventory levels from warehouse system
*/
export declare function productCatalogSyncExample(): Promise<void>;
/**
* Example 3: Employee Data Deduplication
* Scenario: Finding duplicate employee records across HR and payroll systems
*/
export declare function employeeDeduplicationExample(): Promise<void>;
/**
* Example 4: High-Performance Large Dataset Join
* Scenario: Processing 100K+ records efficiently
*/
export declare function highPerformanceJoinExample(): Promise<void>;
/**
* Example 5: Multi-Column Semantic Join
* Scenario: Joining on multiple related columns with different semantic types
*/
export declare function multiColumnSemanticJoinExample(): Promise<void>;
/**
* Run all examples
*/
export declare function runAllExamples(): Promise<void>;
//# sourceMappingURL=semantic-join-examples.d.ts.map