You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
529 B
19 lines
529 B
2 years ago
|
namespace Toogps.Mongo.Repository
|
||
|
{
|
||
|
public class RepositoryContext
|
||
|
{
|
||
|
private static MongoServer _mongoServer;
|
||
|
//一般人是不会看到这里的:一条GPS的记录,占用磁盘空间大约是:77.231Byte。
|
||
|
public static MongoServer Server
|
||
|
{
|
||
|
get
|
||
|
{
|
||
|
if (_mongoServer == null)
|
||
|
{
|
||
|
return _mongoServer = new MongoServer();
|
||
|
}
|
||
|
return _mongoServer;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|