summaryrefslogtreecommitdiffstats
path: root/src/schema/value.rs
AgeCommit message (Collapse)Author
2019-08-08cargo fmtPaul Masurel
2019-07-27add support for float (#603)fdb-hiroshima
* add basic support for float as for i64, they are mapped to u64 for indexing query parser don't work yet * Update value.rs * implement support for float in query parser * Update README.md
2019-07-01Tiqb feature/2018 (#583)Paul Masurel
* rust 2018 * Added CHANGELOG comment
2019-03-20Feature/reader (#517)Paul Masurel
Adding IndexReader to the API. Making it possible to watch for changes. * Closes #500
2019-03-15WIP: date field (#487)barrotsteindev
* initial version, still a work in progress * remove redudant or * add chrono::DateTime and index i64 * add more tests * fix tests * pass DateTime by ptr * remove println! * document query_parser rfc 3339 date support * added some more docs about implementation to schema.rs * enforce DateTime is UTC, and re-export chrono * added DateField to changelog * fixed conflict * use INDEXED instead of INT_INDEXED for date fields
2018-09-11Added SnippetGeneratorPaul Masurel
2018-05-07Add fast field for associating arbitrary bytes to a document (#275)Jason Wolfe
* Add fast field for associating arbitrary bytes to a document * Fix unused macro_use warning * Improvements from code review * Make BytesFastFieldWriter public * Fix json parsing validation failure * Add bytes fast field to CHANGELOG.md * Fix compile errors from merge * Support merging * Address misc code review comments * Fix comments from CR
2018-04-21Cargo fmtPaul Masurel
2018-02-03FormatPaul Masurel
2018-01-25Test not passingPaul Masurel
2017-12-14NOBUG rustfmtPaul Masurel
2017-12-14NOBUG intellij misc lintPaul Masurel
2017-08-28FormatPaul Masurel
2017-05-31issue/181 BinarySerializable does not return the len + Generics over Read+WritePaul Masurel
2017-05-31generic readPaul Masurel
2017-05-16Make rustfmt happyLaurentiu Nicola
2017-05-15formatPaul Masurel
2017-05-07Replace rustc_serialize with serdeAshley Mannix
2017-05-04issues/65 Added i64 fast fieldsPaul Masurel
2017-05-04Compiling... fastfield not implemented yetPaul Masurel
2017-05-04issue/65 Switching to u64.Paul Masurel
2016-10-12Added a macro to define document simplyWhite-Oak
Added a test to cover that. Added `impl From<&str> for Value` for dco macro usage.
2016-09-20Added documentationPaul Masurel
2016-08-28ISSUE-8 Replacing Vec by an Unrolled Linked List.Paul Masurel
2016-08-16Closes #12 - parse json array as multiple values for the fieldPaul Masurel
... Also adds some unit tests.
2016-08-14Refactoring, and making server working with a dynamic schemaPaul Masurel