This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 112
Re-implement dynamic max expiration time #832
Merged
Merged
Changes from 1 commit
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
b8dffd7
Implement removing orders with longest expiration time in SQL
albrow bc5556a
Implement removing orders with longest expiration time in Dexie
albrow 7b6edc2
Implement first pass of setting max expiration time in orderwatcher
albrow 10d9789
Consider pinned orders correctly regarding max expiration time
albrow 15bf989
Tweak max expiration time behavior
albrow 7b1b14e
Add test for GetCurrentMaxExpirationTime
albrow f71150b
Simplify implementation by removing slowCounter and calculating max e…
albrow ec5ae8e
Add clarifying comment
albrow c3217d7
Account for pinned orders in meshSpecificOrderValidation
albrow 48e1a62
Slightly simplify orderwatch.Watcher.add based on PR feedback
albrow 0b2bfc8
Include pinned order in TestOrderWatcherDecreaseExpirationTime
albrow File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Implement removing orders with longest expiration time in Dexie
- Loading branch information
commit bc5556a2115bc95660115b42c22df6bb22a25eb8
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I found a more efficient way to remove duplicates from the
added
andremoved
sets. Applied the same approach to bothAddMiniHeaders
andAddOrders
for both the SQL and Dexie implementations.