id-modes

command
v1.3.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 3, 2025 License: MIT Imports: 5 Imported by: 0

README

ID Modes Example

Home  /  ID Modes Examples

 

This example demonstrates the different ID generation strategies available in the go-mongodb package.

 

Available ID Modes

 

1. ULID (Default)
  • Value: ulid
  • Description: Generates 26-character ULID strings with temporal ordering
  • Best for: Applications needing time-based sorting and better database performance

🔝 back to top

 

2. ObjectID
  • Value: objectid
  • Description: Generates standard MongoDB ObjectIDs
  • Best for: Compatibility with existing MongoDB applications

🔝 back to top

 

3. Custom
  • Value: custom
  • Description: No automatic ID generation; user provides their own _id
  • Best for: Applications that need full control over document IDs

🔝 back to top

 

Configuration

 

Environment Variable
export MONGODB_ID_MODE=ulid      # Default - ULID strings
export MONGODB_ID_MODE=objectid  # MongoDB ObjectIDs
export MONGODB_ID_MODE=custom    # User-provided IDs

🔝 back to top

 

Programmatic Configuration
config := &mongodb.Config{
    Host:     "localhost",
    Port:     27017,
    Database: "myapp",
    IDMode:   mongodb.IDModeULID,      // Default
    // IDMode:   mongodb.IDModeObjectID,  // ObjectID mode
    // IDMode:   mongodb.IDModeCustom,    // Custom mode
}

client, err := mongodb.ConnectWithConfig(config)

🔝 back to top

 

Running the Example

go run main.go

This will demonstrate all three ID modes and show how each one behaves.

🔝 back to top

 


 

An open source project brought to you by the Cloudresty team.

Website  |  LinkedIn  |  BlueSky  |  GitHub

 

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL