DBComponent.cs 365 B

12345678910111213141516
  1. using MongoDB.Driver;
  2. namespace ET.Server
  3. {
  4. /// <summary>
  5. /// 用来缓存数据
  6. /// </summary>
  7. [ChildOf(typeof(DBManagerComponent))]
  8. public class DBComponent: Entity, IAwake<string, string, int>, IDestroy
  9. {
  10. public const int TaskCount = 32;
  11. public MongoClient mongoClient;
  12. public IMongoDatabase database;
  13. }
  14. }