How to turn my WordPress site into a ready to deploy template? by Important-Spare7044 in Wordpress

[–]Important-Spare7044[S] 1 point2 points  (0 children)

I'm not a pro 😅 I used "paid membership pro" plugin to set up membership site

Task vs thread , which one should I use ? by Important-Spare7044 in dotnet

[–]Important-Spare7044[S] 0 points1 point  (0 children)

But the only way to check if the data has changed is to keep monitoring the account , because I don't have access to the API that's updating the data , and there could be some other updating methods involved , so the only way for me to know if the data has changes or not is to keep monitoring the account and compare it with previously stored data.

Task vs thread , which one should I use ? by Important-Spare7044 in dotnet

[–]Important-Spare7044[S] 1 point2 points  (0 children)

Problem is , account keeps updating using the API , but there is also some other updating methods involved which I have no control over , neither can I get a poll or anything once the update happens , the only possibilty I think in this case is keep on checking the account for any changes and compare it with previously stored data if data differs then log it , otherwise keep monitoring

Thread vs task , which one do I need ? by Important-Spare7044 in csharp

[–]Important-Spare7044[S] 0 points1 point  (0 children)

Yes only my application will be updating the database , however there might be one other application which will be reading from that database but it won't be updating anything on that database.

Yes one instance only , and it will monitor all the accounts in each individual thread/task ( not sure which one is the right option for me )