-
Because the [sort function of the MongoDB cursor](https://github.com/rejectedsoftware/vibe.d/blob/master/mongodb/vibe/db/mongo/cursor.d#L84) takes an associative array, there is no well-defined orderi…
-
```
use BSON::Document;
use MongoDB::Client;
my $client = MongoDB::Client.new(:uri('mongodb://'));
my $database = $client.database('myProject');
my MongoDB::Collection $collection = $database…
-
Exercise: Serialize and deserialize a data structure with serde (JSON).
``` rust
use std::{fs::File, io::Error};
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug)]
…
-
I've got a 200GB BSON file from Mongo, and I want to parse it as a stream: process each element in the list independently. It would be great if there was a version of `decode_document` which `yield`-e…
-
I am able to save a custom struct using BSON when one of the data members is a character but not when it is a string (it seems to hang). It is a nested struct, and the change that I am making is in th…
-
I am trying to get next and previous document.
`$this->mongo_db->where_gt('_id',new MongoDB\BSON\ObjectId($id));`
but the problem is $id has to be float to work in your where_gt function. If yo…
-
Can I save a compressed BSON file?
such as using CodecZstd.jl ?
e.g. Pandas has a parameter `compression='infer'`
https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.read_csv.html
norci updated
3 years ago
-
Hello, I found the following Limits in the docu. Are there more Limits to care about?
(And I have some questions)
LiteDB Limits found in Docs:
-------------------------
- Collections Names in Su…
-
Useful when using mongodb databases
-
I'm trying to load in the YOLOv3 ONNX (v1.5) model from: https://github.com/onnx/models/tree/master/vision/object_detection_segmentation/yolov3
with:
```julia
using Flux, ONNX
ON…