Skip to content

Data types support object type #692

@liyan186

Description

@liyan186

What problem does the new feature solve?

Better store the following class

data class OrderBook(
    val symbol: String,
    val timeMillis: Long,
    val asks: List<Book>,
    val bids: List<Book>,
    val status: Boolean
) {
    data class Book(val price: BigDecimal, val size: BigDecimal)
}

What does the feature do?

data types support object type. In this way, asks and bids can store more efficiently.

Implementation challenges

No response

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions