mirror of
https://github.com/benjamin-wilson/public-pool.git
synced 2025-03-18 05:41:43 +01:00
insert optimizations
This commit is contained in:
parent
726b906071
commit
3debb2e3c9
@ -21,6 +21,17 @@ export class ClientService {
|
||||
return await this.clientRepository.save(client);
|
||||
}
|
||||
|
||||
public async insert(partialClient: Partial<ClientEntity>): Promise<ClientEntity> {
|
||||
const insertResult = await this.clientRepository.insert(partialClient);
|
||||
|
||||
const client = {
|
||||
...partialClient,
|
||||
...insertResult.generatedMaps[0]
|
||||
};
|
||||
|
||||
return client as ClientEntity;
|
||||
}
|
||||
|
||||
public async delete(sessionId: string) {
|
||||
return await this.clientRepository.softDelete({ sessionId });
|
||||
}
|
||||
@ -87,4 +98,5 @@ export class ClientService {
|
||||
.getRawMany();
|
||||
return result;
|
||||
}
|
||||
|
||||
}
|
@ -40,7 +40,7 @@ const ORMModules = [
|
||||
cache: true,
|
||||
logging: false,
|
||||
enableWAL: true,
|
||||
busyTimeout: 60 * 1000
|
||||
busyErrorRetry: 60 * 1000
|
||||
}),
|
||||
CacheModule.register(),
|
||||
ScheduleModule.forRoot(),
|
||||
|
@ -280,12 +280,13 @@ export class StratumV1Client extends EasyUnsubscribe {
|
||||
|
||||
|
||||
|
||||
this.entity = await this.clientService.save({
|
||||
this.entity = await this.clientService.insert({
|
||||
sessionId: this.extraNonceAndSessionId,
|
||||
address: this.clientAuthorization.address,
|
||||
clientName: this.clientAuthorization.worker,
|
||||
userAgent: this.clientSubscription.userAgent,
|
||||
startTime: new Date(),
|
||||
bestDifficulty: 0
|
||||
});
|
||||
|
||||
this.stratumV1JobsService.newMiningJob$.pipe(
|
||||
|
Loading…
x
Reference in New Issue
Block a user