awesome-repositories.com
© 2026 Bringes Technology SRL·VAT RO45896025·hello@bringes.io
MCPSitemapPrivacyTerms
Batch Data Processing · Awesome GitHub Repositories

2 repos

Awesome GitHub RepositoriesBatch Data Processing

Capabilities for performing bulk operations on database records efficiently.

Distinguishing note: Specifically targets high-performance bulk insertion and modification of records, distinct from single-row CRUD.

Explore 2 awesome GitHub repositories matching data & databases · Batch Data Processing. Refine with filters or upvote what's useful.

  1. Home
  2. Data & Databases
  3. Batch Data Processing

Awesome Batch Data Processing GitHub Repositories

Describe the repository you're looking for…
Find the best repos with AI.We'll search the best matching repositories with AI.
  • twentyhq/twenty

    twentyhq/twenty

    39,869View on GitHub↗

    Twenty is a headless customer relationship management framework that enables developers to build, version, and deploy custom business applications using code. By utilizing a declarative approach to data modeling, the platform allows for the definition of custom objects, fields, and complex relationships directly within the source code. This schema-driven architecture automatically generates corresponding REST and GraphQL APIs, ensuring that data structures and interface components remain synchronized across development and production environments. The platform distinguishes itself through a m

    Enables efficient bulk creation, updates, and deletions of records through optimized API requests.

    TypeScriptcrmcrm-systemcustomer
    39,869View on GitHub↗
  • go-gorm/gorm

    go-gorm/gorm

    39,602View on GitHub↗

    GORM is a developer-focused object-relational mapping library for Go that provides a comprehensive data persistence framework. It serves as a database access layer, allowing developers to map application structures to database tables and perform CRUD operations using a fluent, type-safe query builder instead of writing raw SQL. The library distinguishes itself through its association-aware persistence, which automatically tracks and synchronizes complex entity relationships during database operations. It utilizes a driver-agnostic interface to maintain consistent behavior across various stora

    To efficiently insert large number of records, pass a slice to the Create method. GORM will generate a single SQL statement to insert all the data and backfill primary key values, hook methods will be invoked too. It w

    Gogogolanggorm
    39,602View on GitHub↗