Giter Site home page Giter Site logo

picker's People

Contributors

chanced avatar

Watchers

 avatar  avatar

picker's Issues

Convert as many interface{} on the marshaling types to primitive pointer types or dynamic types

In an effort to move things along, I used interface{} for dynamic fields on the internal types used for (un)marshaling.

type completionField struct {
	Analyzer                   string      `json:"analyzer,omitempty"`
	SearchAnalyzer             string      `json:"search_analyzer,omitempty"`
	SearchQuoteAnalyzer        string      `json:"search_quote_analyzer,omitempty"`
	PreserveSeperators         interface{} `json:"preserve_separators,omitempty"`
	PreservePositionIncrements interface{} `json:"preserve_position_increments,omitempty"`
	MaxInputLength             interface{} `json:"max_input_length,omitempty"`
	Type                       FieldType   `json:"type"`
}

These need to be migrated to either primitive pointer types or dynamic types:

type completionField struct {
	Analyzer                   string        `json:"analyzer,omitempty"`
	SearchAnalyzer             string        `json:"search_analyzer,omitempty"`
	SearchQuoteAnalyzer        string        `json:"search_quote_analyzer,omitempty"`
	PreserveSeperators         *dynamic.Bool `json:"preserve_separators,omitempty"`
	PreservePositionIncrements *bool         `json:"preserve_position_increments,omitempty"`
	MaxInputLength             *int          `json:"max_input_length,omitempty"`
	Type                       FieldType     `json:"type"`
}

I'm just not sure which. Things I need to think through:

  • If I use primitives, I'll need to add something to the effect of Float64Ptr and CoerceInt64Ptr to the types in the dynamic package. Should I be concerned about the usability of this for the dynamic package? It wont be a pointer to the actual value.
  • If I use dynamic, that'll be a lot cleaner but I won't be able to cleanly coerce. This is a problem as some accessors currently coerce int values.

Doing so should improve performance of enc/dec.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.