mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 20:37:15 +02:00
optimize document deserialization
This commit is contained in:
parent
b6af84eb77
commit
8d70b01714
7 changed files with 241 additions and 469 deletions
|
@ -877,7 +877,8 @@ mod tests {
|
|||
let mut cursor = Cursor::new(Vec::new());
|
||||
|
||||
let mut builder = DocumentBatchBuilder::new(&mut cursor).unwrap();
|
||||
builder.add_documents(big_object).unwrap();
|
||||
todo!();
|
||||
//builder.add_documents(big_object).unwrap();
|
||||
builder.finish().unwrap();
|
||||
cursor.set_position(0);
|
||||
let content = DocumentBatchReader::from_reader(cursor).unwrap();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue