77 reputation
5
bio website
location
age
visits member for 1 year
seen 3 hours ago
stats profile views 12

May
15
comment Typed Datasets or Entity Framework for an online game server?
@dbaseman right now I have it set up to do writes on an interval (every so and so seconds it updates the database with the new info). The records are probably going to be updated (in the memory cache) pretty often. Chat is going to be all reads (reading which users can hear the messages) but the other mechanics of the game (like turn-based combat) is probably going to be nearly equal reads and writes. At max capacity the dataset will have 5 or 6 tables with a couple thousand records each (all logged in players). The in-memory tables are joins of db tables.
May
15
comment Typed Datasets or Entity Framework for an online game server?
That looks cool, but I rather not go too 3rd-party with this one.
May
15
comment Typed Datasets or Entity Framework for an online game server?
@dbaseman but if I was deadset on using either Entity Framework or Typed Datasets you'd side strongly with Datasets?
May
15
comment Typed Datasets or Entity Framework for an online game server?
Yep @Tombala that's exactly what I'm doing.
May
15
asked Typed Datasets or Entity Framework for an online game server?
Mar
29
comment ServerSocket not working for me on android
@EJP I don't know... seems like the login server would be a huge bottleneck in that set up. There can be more than one game server and if all traffic has to come through the login server it could get overloaded.
Mar
28
awarded  Editor
Mar
28
revised ServerSocket not working for me on android
deleted 25 characters in body
Mar
28
comment ServerSocket not working for me on android
@FoamyGuy I suspected that. Seems like a pretty secure setup as far as preventing DDoS attacks and unauthorized connections on the game server, but if it can't be done, it can't be done. My game server is using the internet.
Mar
28
asked ServerSocket not working for me on android
Mar
25
asked In c# how do I use FTP over SSH2, preferably without third party code
Mar
19
asked Will TCP ever break up data less than 1kb?
Mar
16
comment Mysql composite primary key
Yes but what if PersonId1 is 9 and PersonId2 is 10 in one record but in another PersonId1 is 10 and personId2 9. That redefines the same relationship. I was wondering if there was a way to prevent that.
Mar
16
asked Mysql composite primary key
Feb
21
comment Can Entity Framework classes have non-Entity Framework members?
Also by the way, is it possible to include stuff in the setter? Say I want to auto populate other fields when Entity Framework sets my value?
Feb
21
accepted Can Entity Framework classes have non-Entity Framework members?
Feb
21
comment Can Entity Framework classes have non-Entity Framework members?
I knew functions weren't stored in the database but I thought the Entity Framework still might not like them. Thanks for clearing that up!
Feb
21
asked Can Entity Framework classes have non-Entity Framework members?
Feb
19
asked Can I pass a TcpClient from one server to another?
Feb
14
comment Javascript in an Iframe not exectuing
You are correct. Thanks to you and all the other answerers!