mkrd

Results 20 issues of mkrd

### First Check - [X] I added a very descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it....

question

Let's face it, the readme could be a lot better. It should be refactored to conform to current conventions, provide a more complete overview of the library and to increase...

help wanted

```python import dictdatabase as DDB from path_dict import PathDict import time # Measure time to get all cups t1 = time.perf_counter() cups = DDB.at("cups/*", key="organizer_email").read() # REMOVE where selector #...

Things left to do: - [ ] Update docs

The goal here is to be able to index a file that is bigger than the available RAM. This is not good enough yet because it assumes that a key...

# Problems 1. Currently, a lock is removed after a certain threshold of time, so automatically remove dead locks. But if a session is taking longer than the timeout, it...

enhancement

The entire file needs to be read, but by partially reading each key value pair sequentially, we can prevent having to load the entire file into memory. Proposal: - Do...

enhancement

First draft finished. Issues to solve: - [ ] Available Bases should be improved to allow better nested mapping - [ ] Wenn going into a read-write session, there is...

enhancement

```json { "users": { "Ben": { "age": 30, "job": "Software Engineer" } }, "Ben": {"job": "Plumber"} } ``` ```python print(DDB.at("users", key="job").read()) >>> "Plumber" ``` Have you thought about requiring the...

enhancement