You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is more of a question than an issue. Have you planned to use generic row data type instead of String?
pub struct Row<T> {
pub id: RowID,
pub data: T,
}
I tried to implement the Row in my fork (https://github.com/tpisto/tihku) and it's mostly working, tests are passing, etc. But the self.rows.remove(&id) gives a lifetime issue I have not yet managed to solve... If Row is in your interest, maybe you could have better insight what's wrong the lifetime there.
ps. congrats for the cool project 👍🏻
The text was updated successfully, but these errors were encountered:
@tpisto Haha, yes, we've just been to lazy to do this. If you got the lifetime issues sorted out, can you please open a pull request? I think I will need @psarna to review it because he's was the one doing the switch to lockless skip list.
This is more of a question than an issue. Have you planned to use generic row data type instead of String?
I tried to implement the Row in my fork (https://github.com/tpisto/tihku) and it's mostly working, tests are passing, etc. But the self.rows.remove(&id) gives a lifetime issue I have not yet managed to solve... If Row is in your interest, maybe you could have better insight what's wrong the lifetime there.
ps. congrats for the cool project 👍🏻
The text was updated successfully, but these errors were encountered: